mirror of
https://github.com/XFox111/my-website.git
synced 2026-04-22 07:28:01 +03:00
24 lines
332 B
SCSS
24 lines
332 B
SCSS
@import "../theme.scss";
|
|
|
|
.alertBox
|
|
{
|
|
@include maxCenter;
|
|
@include flex(row);
|
|
align-items: center;
|
|
gap: $spacingM;
|
|
|
|
border: 2px solid $colorStatusWarningBorderActive;
|
|
padding: $spacingS $spacingM;
|
|
|
|
.icon
|
|
{
|
|
font-size: $fontSizeHero900;
|
|
color: $colorStatusWarningForeground1;
|
|
}
|
|
|
|
.title
|
|
{
|
|
@include body1Stronger;
|
|
}
|
|
}
|