aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/assets/scss/global.scss
blob: 5d12976e920ffce4f788561518e184feb99d7b9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Global CSS

// === Forms

.required label::after {
  content: "*";
  color: red;
}

// === Tools

.nowrap {
  white-space: nowrap;
}

.flex {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-center {
  align-items: center;
}