diff options
| author | Hamidreza Ghavami <hamid.r.gh.1998@gmail.com> | 2023-05-08 16:34:12 +0300 |
|---|---|---|
| committer | Hamidreza Ghavami <hamid.r.gh.1998@gmail.com> | 2023-05-08 16:34:12 +0300 |
| commit | d137deccfa49fdd202dc7ce5147ad71d450c3134 (patch) | |
| tree | d2b665f0cdf820cda9f69cfa767869db692bb02c /web/assets/css/custom.css | |
| parent | 00777e3a258c19301c8b98e55b2b79df8d9585a6 (diff) | |
fix style height when rotating + move cookie util to their specific file
Diffstat (limited to 'web/assets/css/custom.css')
| -rw-r--r-- | web/assets/css/custom.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/web/assets/css/custom.css b/web/assets/css/custom.css index 718e87f8..728619e0 100644 --- a/web/assets/css/custom.css +++ b/web/assets/css/custom.css @@ -1,5 +1,23 @@ -#app { +html, +body { height: 100vh; + width: 100vw; + margin: 0; + padding: 0; + overflow: hidden; +} + +#app { + height: 100%; + min-height: 100vh; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + margin: 0; + padding: 0; + overflow: auto; } .ant-space { |
