Files
lucent-laravel/front/sass/_notice.scss
T

26 lines
469 B
SCSS
Raw Normal View History

2024-08-14 22:04:34 +03:00
.notice {
2024-08-17 19:23:19 +03:00
background-color: var(--p20);
padding: 14px;
2024-08-14 22:04:34 +03:00
margin: 2rem 0;
position: relative;
font-size: 16px;
line-height: 24px;
2024-08-17 19:23:19 +03:00
border-radius: 12px;
//border: 3px solid var(--border-base);
2024-08-14 22:04:34 +03:00
}
.notice .title {
content: "NOTE";
2024-08-17 19:23:19 +03:00
//position: absolute;
border-radius: 12px;
2024-08-14 22:04:34 +03:00
display: block;
font-weight: bold;
}
2024-08-17 21:10:01 +03:00
.notice.notice-success{
background: var(--suc20);
2024-08-17 19:23:19 +03:00
}
.notice.notice-error{
background: var(--err10);
2024-08-14 22:04:34 +03:00
}