diff options
| author | Ho3ein <ho3ein.sanaei@gmail.com> | 2023-05-08 19:10:02 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-08 19:10:02 +0300 |
| commit | 30a5f66f26164e1bcbdf9a0780a40bc56230e73c (patch) | |
| tree | 749ce90b0895352639d2c45fa176a362b3105b32 /web/assets/css/custom.css | |
| parent | 7bb3e517b2e279a52fb5627e011ea03fd91f648e (diff) | |
| parent | bb6e6861ca683894139c5307bd2d41f2e264fe00 (diff) | |
Merge pull request #381 from hamid-gh98/main
[FIX] bug logout path + [UPDATE] login UI and more ...
Diffstat (limited to 'web/assets/css/custom.css')
| -rw-r--r-- | web/assets/css/custom.css | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/web/assets/css/custom.css b/web/assets/css/custom.css index 718e87f8..7cdfe711 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 { @@ -180,12 +198,12 @@ .ant-card-dark:hover { border-color: #e8e8e8; - box-shadow: 0 1px 10px -1px rgb(154 175 238); + box-shadow: 0 1px 10px -1px rgb(76, 88, 126); } -.ant-card-bordered:hover { - /*box-shadow: 0 3px 12px -0.8px #0000005c;*/ -} +/* .ant-card-bordered:hover { + box-shadow: 0 3px 12px -0.8px #0000005c; +} */ .ant-card-dark .ant-table-thead th { color: hsla(0,0%,100%,.65); @@ -203,6 +221,7 @@ .ant-card-dark .ant-input-group-addon { color: hsla(0,0%,100%,.65); background-color: #262f3d; + border: 1px solid rgb(0 150 112 / 0%); } .ant-card-dark .ant-list-item-meta-title, |
