Formatting corrections
This commit is contained in:
parent
988727dcbd
commit
25c6e81ebc
7 changed files with 26 additions and 23 deletions
|
@ -36,7 +36,7 @@ p.price{
|
|||
}
|
||||
|
||||
.buttons-class-cart{
|
||||
background-color: #ff4700;
|
||||
background-color: #ff4722;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
|
@ -47,3 +47,12 @@ p.price{
|
|||
justify-content: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.availableItems{
|
||||
background: lightblue;
|
||||
font-family: Roboto Mono;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
text-align: left;
|
||||
margin: 5px;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<div *ngIf="items.length > 0">
|
||||
<div class="availableItems" >
|
||||
Available Items:
|
||||
</div>
|
||||
<div class="card" *ngFor="let item of itemsUpdate | async">
|
||||
<mat-card>
|
||||
<table cellspacing="0" width="100%" >
|
||||
|
|
|
@ -51,7 +51,7 @@ img.icon{
|
|||
}
|
||||
|
||||
.buttons-class {
|
||||
background-color: #ff4700;
|
||||
background-color: #ff4722;
|
||||
color: white;
|
||||
font-weight: 700;
|
||||
height: 25px !important;
|
||||
|
|
|
@ -123,7 +123,3 @@
|
|||
-->
|
||||
</div>
|
||||
</mat-card>
|
||||
<div class="availableItems" >
|
||||
Available Items:
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
|
||||
* {
|
||||
font-family: Spartan;
|
||||
}
|
||||
|
||||
.settings-title {
|
||||
font-family: Roboto Mono;
|
||||
background: #ff4700;
|
||||
font-family: Spartan;
|
||||
background: #ff4722;
|
||||
color: white;
|
||||
font-size: 30px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
margin-bottom: 15px;
|
||||
height: 40px;
|
||||
justify-content: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.settings_field {
|
||||
width: 100%;
|
||||
font-family: Spartan;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
align-items: center;
|
||||
margin-top: 12px;
|
||||
margin-bottom: 12px;
|
||||
font-weight: 500;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.small{
|
||||
|
|
|
@ -10,22 +10,15 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="main-buttons">
|
||||
<button mat-raised-button
|
||||
style="background: #ff4700;
|
||||
font-weight: 700;
|
||||
color: white;"
|
||||
<button mat-raised-button color="primary"
|
||||
[routerLink]="['/orders']">
|
||||
View Orders
|
||||
</button>
|
||||
<button mat-raised-button
|
||||
style="background: #ff4700;
|
||||
color: white;"
|
||||
<button mat-raised-button color="primary"
|
||||
class="text" (click)="openSettings()">
|
||||
<mat-icon class="icon">manage_accounts</mat-icon>
|
||||
</button>
|
||||
<a mat-raised-button
|
||||
style="background: #ff4700;
|
||||
color: white;"
|
||||
<a mat-raised-button color="primary"
|
||||
href="https://zgo.cash/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer">
|
||||
|
|
Loading…
Reference in a new issue