summaryrefslogtreecommitdiffstats
path: root/src/components/App/App.module.scss
blob: 61e399e775826c415c8d548c2b26aebc11fc4283 (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
.app {
  display: flex;
  flex-flow: column nowrap;
  grid-template-rows: auto 1fr;
  height: 100vh;
  overflow: hidden;
}

.main {
  display: flex;
  flex-flow: row nowrap;
  flex-grow: 1;
  overflow: hidden;
}

.sidebar {
  width: calc((6 / 16) * 100%);
  height: 100%;
}

.details {
  width: calc((10 / 16) * 100%);
  overflow: hidden;
  height: 100%;
}