Files
ontime/client/src/styles/_mixins.scss
T
Carlos Valente db0eee3b9c Feat/mac (#109)
* 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
2022-04-17 20:30:39 +02:00

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;
}