mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
16 lines
379 B
SCSS
Executable File
16 lines
379 B
SCSS
Executable File
.log-msg {
|
|
padding: 1rem;
|
|
margin: 1rem;
|
|
}
|
|
|
|
@each $tuple in
|
|
'ok' #aaffad #81e27d #459442,
|
|
'warning' #f8ffa8 #d6d949 #94972f,
|
|
'error' #ff7d79 #ee5649 #a5302a,
|
|
'info' #b6d2ff #85b0ee #4865a5 {
|
|
.log-msg-status-#{nth($tuple, 1)} {
|
|
background: #{nth($tuple, 2)};
|
|
border: 1px solid #{nth($tuple, 3)};
|
|
color: #{nth($tuple, 4)};
|
|
}
|
|
} |