1
0
mirror of https://github.com/XFox111/my-website.git synced 2026-04-22 07:28:01 +03:00

feat!: Added alert banner

This commit is contained in:
2024-09-12 18:43:48 +00:00
parent 642c13a3db
commit 92ef42481f
6 changed files with 84 additions and 8 deletions
+23
View File
@@ -0,0 +1,23 @@
@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;
}
}