1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00
vault-frontend/src/components/input/Info/style.scss
2022-08-14 15:19:54 +07:00

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;
}
}