summaryrefslogtreecommitdiffstats
path: root/src/components/RequestDetails/RequestDetails.module.scss
blob: 8a872f77c5edb7f0ee6e3c9b94b04c1bc72871e4 (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
26
.details {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  overflow: hidden;
}

.header {
  flex-shrink: 0;
  flex-grow: 0;
}

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

.noRequestSelected {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}