mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
69 lines
1.1 KiB
SCSS
69 lines
1.1 KiB
SCSS
.arrow {
|
|
transform: rotate(45deg);
|
|
}
|
|
.corner {
|
|
position: absolute;
|
|
top: 0.5rem;
|
|
right: 0.5rem;
|
|
cursor: pointer;
|
|
color: $ui-white;
|
|
transition-property: color;
|
|
transition-duration: $transition-time-action;
|
|
border-radius: $component-border-radius-full;
|
|
|
|
// similar styles to ontime-button-subtle
|
|
background-color: $gray-1050;
|
|
outline: 2px solid $gray-1050;
|
|
|
|
&:hover {
|
|
color: $ontime-color;
|
|
background-color: $gray-1000;
|
|
outline: 2px solid $gray-1000;
|
|
}
|
|
}
|
|
|
|
.offsetCorner {
|
|
right: 2rem;
|
|
}
|
|
|
|
.header {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.title {
|
|
font-size: 1rem;
|
|
color: $title-gray;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.label {
|
|
display: block;
|
|
font-size: $aux-text-size;
|
|
color: $label-gray;
|
|
margin-bottom: $element-inner-spacing;
|
|
max-width: max-content; // prevent label from taking entire row
|
|
}
|
|
|
|
.separator {
|
|
background-color: $border-color-ondark;
|
|
|
|
&.horizontal {
|
|
width: 100%;
|
|
height: 1px;
|
|
}
|
|
|
|
&.vertical {
|
|
width: 1px;
|
|
height: 0.75em;
|
|
}
|
|
}
|
|
|
|
.panel {
|
|
position: relative;
|
|
border-radius: $panel-border-radius;
|
|
background-color: $bg-container-l2;
|
|
padding: 1rem;
|
|
}
|