mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
styled wallet headers and transaction tables
This commit is contained in:
44
src/styles/wallet-header/wallet-header.scss
Normal file
44
src/styles/wallet-header/wallet-header.scss
Normal file
@@ -0,0 +1,44 @@
|
||||
wallet-header {
|
||||
.wallet-header {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
justify-items: center;
|
||||
gap: 15px 10px;
|
||||
.header-item {
|
||||
display: inline;
|
||||
grid: 1;
|
||||
width: 250px;
|
||||
height: 132px;
|
||||
background-color: $black;
|
||||
border: 1px solid $black;
|
||||
border-radius: 3px;
|
||||
.--header {
|
||||
margin: 5px auto;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
font-size: 20px;
|
||||
color: $gray-04;
|
||||
}
|
||||
.--content {
|
||||
.--balance {
|
||||
display: block;
|
||||
font-size: 30px;
|
||||
text-align: center;
|
||||
margin: 22px 0 4px 0;
|
||||
&.--positive {
|
||||
color: $green-01;
|
||||
}
|
||||
&.--negative {
|
||||
color: $red-01;
|
||||
}
|
||||
}
|
||||
.--currency {
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: $gray-08;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user