mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
5600235ba1
refactor: migrate react components
36 lines
425 B
SCSS
36 lines
425 B
SCSS
.infoLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: $element-spacing;
|
|
|
|
background-color: $gray-1200;
|
|
border-radius: 3px;
|
|
font-size: $text-body-size;
|
|
padding: 1rem;
|
|
color: $gray-200;
|
|
|
|
svg {
|
|
min-width: 1.5rem;
|
|
align-self: start;
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.info {
|
|
svg {
|
|
color: $info-blue;
|
|
}
|
|
}
|
|
|
|
.warning {
|
|
svg {
|
|
color: $orange-500;
|
|
}
|
|
}
|
|
|
|
.error {
|
|
svg {
|
|
color: $red-500;
|
|
}
|
|
}
|