summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/style/partials/_base.scss
blob: 5f300fd71db0ed242bd918cd7ceac7ad98baf195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@import 'colors';

html,body {
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-display: swap;
  overflow: hidden;
  background-color: $primary;
  color: $primary-text;
  user-select: none;
}

body {
  display: flex;
  flex-direction: column;
  background-color: $secondary;
  position: relative;
}