mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
54442dc9a1
* style: create tag to display network messages * style: create button style for playback * style: review style for QuickEntry * style: review style for Info panel * style: review style for Event blocks * style: review style for Message control panel * style: review style for Playback control * style: review application styles * style: review block styles * refactor: TapButton has active state * style: small style tweaks * refactor: type checks
28 lines
392 B
SCSS
28 lines
392 B
SCSS
@use '../../../theme/main' as *;
|
|
|
|
.header {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 0.9em;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
color: $header-gray;
|
|
}
|
|
|
|
|
|
.moreExpanded,
|
|
.moreCollapsed {
|
|
cursor: pointer;
|
|
color: $text-white;
|
|
}
|
|
|
|
.moreExpanded {
|
|
transform: scaleY(-1);
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.moreCollapsed {
|
|
transform: scaleY(1);
|
|
transition: transform 0.3s;
|
|
}
|