diff options
| author | Kumar Priyansh <[email protected]> | 2019-06-11 16:06:58 +0530 |
|---|---|---|
| committer | Kumar Priyansh <[email protected]> | 2019-06-11 16:06:58 +0530 |
| commit | 81f6e04e2afe9505f9c97d1e3f25bd9347683d8c (patch) | |
| tree | 4107db934da14c3784857afc68cd44a504505c79 /src/styles | |
| parent | cf47ca0e1c9e31826ef5d8e6e86353bef0d43db9 (diff) | |
| download | authorr-81f6e04e2afe9505f9c97d1e3f25bd9347683d8c.tar.xz authorr-81f6e04e2afe9505f9c97d1e3f25bd9347683d8c.zip | |
Added Main Window Styles, Updated Main JS
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/main.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/styles/main.css b/src/styles/main.css index e69de29..2cac8bc 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -0,0 +1,24 @@ +.dragBar { + width: 100%; + height: 40px; + position: absolute; + top: 0; + left: 0; + z-index: 99; + -webkit-user-select: none; + -webkit-app-region: drag; + background-color: rgb(172, 172, 172); + border-radius: 5px 5px 0px 0px; +} +.content { + position: absolute; + top: 40px; + background-color: #fff; + border-radius: 0px 0px 5px 5px; + height: calc(100vh - 80px); + width: 100%; +} +body { + margin: 0; + padding: 0; +}
\ No newline at end of file |
