mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
23 lines
339 B
SCSS
23 lines
339 B
SCSS
@import '~/styles/variables.scss';
|
|
|
|
.row {
|
|
@include row_shadow;
|
|
color: #aaaaaa;
|
|
display: flex;
|
|
flex-direction: row;
|
|
font: $font_12_regular;
|
|
line-height: 24px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.label {
|
|
flex: 1;
|
|
margin-right: $gap;
|
|
}
|
|
|
|
.value {
|
|
float: right;
|
|
color: white;
|
|
font: $font_12_semibold;
|
|
line-height: 24px;
|
|
}
|