mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 02:13:48 +00:00
db0eee3b9c
* chore: upgrade dependencies * feat/mac: draft pipeline * feat/mac: use public folder for transient files * feat/mac: set app fullscreen * feat/mac: cmd + , toggles menu * feat/mac: update readme * refact: easier login process * refact prevent style issues with safari * refact reduce css download * style: cleanup paginator design * style: studio clock is responsive * style: fix spacing style issues with safari
29 lines
573 B
SCSS
29 lines
573 B
SCSS
@use "./main" as *;
|
|
|
|
//////////////////////////////////// general app elements
|
|
|
|
@mixin main-container {
|
|
background-color: $bg-gray-1000;
|
|
border: 1px solid $bg-gray-1000;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
@mixin second-container {
|
|
background-color: $bg-gray-1100;
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
@mixin third-container {
|
|
background-color: $bg-black-300;
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
@mixin osc-label {
|
|
color: $ontime-accent-text;
|
|
font-size: 0.8em;
|
|
-webkit-user-select: text;
|
|
user-select: text;
|
|
}
|