mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 08:53:51 +00:00
63 lines
702 B
SCSS
63 lines
702 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;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
.title,
|
|
.body {
|
|
margin: 0;
|
|
}
|
|
|
|
.title {
|
|
color: $ui-white;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.body {
|
|
color: $gray-400;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.footer {
|
|
width: fit-content;
|
|
}
|
|
|
|
.info {
|
|
svg {
|
|
color: $info-blue;
|
|
}
|
|
}
|
|
|
|
.warning {
|
|
svg {
|
|
color: $orange-500;
|
|
}
|
|
}
|
|
|
|
.error {
|
|
svg {
|
|
color: $red-500;
|
|
}
|
|
}
|