Files
ontime/apps/client/src/index.scss
T
Carlos Valente 3603b836f6 refactor: cuesheet v2 (#435)
* refactor: typescript migration

* chore: remove prop-types package

* refactor: file structure

* refactor: migrate ontime table to tanstack table 8

* refactor: rundown controller uses service as data source

* refactor: convert to typescript

* feat: caching store

* refactor: add delay values to rundown

* feat: toggle past visibility

* chore: update tests

* refactor: add extra fields to CSV

* style: show skipped events

* chore: add route to navigation menu

* style: allow jumping to bottom

* chore: add tests
2023-07-22 09:32:40 +02:00

66 lines
1.0 KiB
SCSS

@use './theme/v2Styles' as *;
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scrollbar-color: #2b2b2b rgba(255, 255, 255, 0.01);
scrollbar-width: thin;
}
// reset box-sizing
*,
*:before,
*:after {
box-sizing: inherit;
}
body,
html,
.App {
font-size: 16px;
font-family: $ontime-font-family;
margin: 0 auto;
overflow: hidden;
overflow: clip;
height: 100vh;
-webkit-user-select: none;
user-select: none;
-webkit-app-region: drag;
background-color: $bg-container-l1;
}
@media (min-width: 1450px) and (max-width: 1666px) {
body,
html,
.App {
font-size: 15px;
}
}
// workaround for chakra
// // https://github.com/chakra-ui/chakra-ui/issues/417
option {
color: initial;
}
/* width */
::-webkit-scrollbar {
width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.01);
border-radius: 2px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #2d2d2d;
border-radius: 2px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #404040;
}