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{
|
.buttons-class-cart{
|
||||||
background-color: #ff4700;
|
background-color: #ff4722;
|
||||||
color: white;
|
color: white;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
@ -47,3 +47,12 @@ p.price{
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
cursor: pointer;
|
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 *ngIf="items.length > 0">
|
||||||
|
<div class="availableItems" >
|
||||||
|
Available Items:
|
||||||
|
</div>
|
||||||
<div class="card" *ngFor="let item of itemsUpdate | async">
|
<div class="card" *ngFor="let item of itemsUpdate | async">
|
||||||
<mat-card>
|
<mat-card>
|
||||||
<table cellspacing="0" width="100%" >
|
<table cellspacing="0" width="100%" >
|
||||||
|
|
|
@ -51,7 +51,7 @@ img.icon{
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttons-class {
|
.buttons-class {
|
||||||
background-color: #ff4700;
|
background-color: #ff4722;
|
||||||
color: white;
|
color: white;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
height: 25px !important;
|
height: 25px !important;
|
||||||
|
|
|
@ -123,7 +123,3 @@
|
||||||
-->
|
-->
|
||||||
</div>
|
</div>
|
||||||
</mat-card>
|
</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 {
|
.settings-title {
|
||||||
font-family: Roboto Mono;
|
font-family: Spartan;
|
||||||
background: #ff4700;
|
background: #ff4722;
|
||||||
color: white;
|
color: white;
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
font-weight: 700;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 15px;
|
padding: 5px;
|
||||||
height: 40px;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings_field {
|
.settings_field {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
font-family: Spartan;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,8 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
|
font-weight: 500;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.small{
|
.small{
|
||||||
|
|
|
@ -10,22 +10,15 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="main-buttons">
|
<div class="main-buttons">
|
||||||
<button mat-raised-button
|
<button mat-raised-button color="primary"
|
||||||
style="background: #ff4700;
|
|
||||||
font-weight: 700;
|
|
||||||
color: white;"
|
|
||||||
[routerLink]="['/orders']">
|
[routerLink]="['/orders']">
|
||||||
View Orders
|
View Orders
|
||||||
</button>
|
</button>
|
||||||
<button mat-raised-button
|
<button mat-raised-button color="primary"
|
||||||
style="background: #ff4700;
|
|
||||||
color: white;"
|
|
||||||
class="text" (click)="openSettings()">
|
class="text" (click)="openSettings()">
|
||||||
<mat-icon class="icon">manage_accounts</mat-icon>
|
<mat-icon class="icon">manage_accounts</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<a mat-raised-button
|
<a mat-raised-button color="primary"
|
||||||
style="background: #ff4700;
|
|
||||||
color: white;"
|
|
||||||
href="https://zgo.cash/"
|
href="https://zgo.cash/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer">
|
rel="noopener noreferrer">
|
||||||
|
|
Loading…
Reference in a new issue