mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
20 lines
319 B
SCSS
20 lines
319 B
SCSS
@import "src/styles/variables";
|
|
|
|
.wrap {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
column-gap: $gap;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.title {
|
|
font: $font_14_semibold;
|
|
color: white;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.subtitle {
|
|
font: $font_12_regular;
|
|
color: transparentize(white, 0.5);
|
|
}
|