mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
28 lines
503 B
SCSS
28 lines
503 B
SCSS
@import 'src/styles/variables';
|
|
|
|
.container {
|
|
min-height: $info_height;
|
|
border-radius: $radius;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font: $font_14_regular;
|
|
line-height: 1.2em;
|
|
padding: $gap;
|
|
background: $gray_90;
|
|
|
|
&:global(.danger) {
|
|
color: white;
|
|
background: $content_bg_danger;
|
|
}
|
|
|
|
&:global(.warning) {
|
|
color: white;
|
|
background: $content_bg_danger;
|
|
}
|
|
|
|
&:global(.primary) {
|
|
color: white;
|
|
background: $content_bg_danger;
|
|
}
|
|
}
|