diff options
Diffstat (limited to 'src/components/App/App.module.scss')
| -rw-r--r-- | src/components/App/App.module.scss | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/src/components/App/App.module.scss b/src/components/App/App.module.scss index 9837cdf..088a4f6 100644 --- a/src/components/App/App.module.scss +++ b/src/components/App/App.module.scss | |||
| @@ -1,3 +1,34 @@ | |||
| 1 | .content { | 1 | .app { |
| 2 | flex: 1 0 auto; | 2 | display: flex; |
| 3 | flex-flow: column nowrap; | ||
| 4 | grid-template-rows: auto 1fr; | ||
| 5 | height: 100vh; | ||
| 6 | overflow: hidden; | ||
| 7 | } | ||
| 8 | |||
| 9 | .main { | ||
| 10 | display: flex; | ||
| 11 | flex-flow: row nowrap; | ||
| 12 | flex-grow: 1; | ||
| 13 | overflow: hidden; | ||
| 14 | } | ||
| 15 | |||
| 16 | .sidebar { | ||
| 17 | width: calc((6 / 16) * 100%); | ||
| 18 | height: 100%; | ||
| 19 | overflow-y: auto; | ||
| 20 | } | ||
| 21 | |||
| 22 | .details { | ||
| 23 | width: calc((10 / 16) * 100%); | ||
| 24 | overflow: hidden; | ||
| 25 | height: 100%; | ||
| 26 | } | ||
| 27 | |||
| 28 | .noRequest, .noRequestSelected { | ||
| 29 | width: 100%; | ||
| 30 | height: 100%; | ||
| 31 | display: flex; | ||
| 32 | justify-content: center; | ||
| 33 | align-items: center; | ||
| 3 | } | 34 | } |
