summaryrefslogtreecommitdiffstats
path: root/src/components/Content/Content.module.scss
blob: 4720afd13e1ad06c50d7ff23359bdebaef99d7de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}

.body {
  flex-grow: 1;
  flex-shrink: 1;
  overflow-y: auto;
}

.renderError {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}