Merge pull request #82 from berdosi/fix-settings-location

Fix issue https://github.com/nextcloud/weather/issues/75 causing settings menu not to display correctly (thanks @berdosi)
master
e-alfred 2019-12-13 13:09:19 +01:00 committed by GitHub
commit 0759f7e1bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,11 @@
#city-list-left { #city-list-left {
display: flex;
flex-direction: column;
width: 250px; width: 250px;
height: 100%; height: 100%;
float: left; float: left;
-moz-box-sizing: border-box; box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
background-color: #fff; background-color: #fff;
padding-bottom: 44px;
border-left: 1px solid #ddd; border-left: 1px solid #ddd;
border-right: 1px solid #ddd; border-right: 1px solid #ddd;
-webkit-user-select: none; -webkit-user-select: none;
@ -60,9 +61,8 @@
#city-right { #city-right {
padding: 45px; padding: 45px;
height: 100%; height: calc(100vh - 50px); /* substract header */
overflow-y: hidden; overflow: auto;
overflow-x: auto;
top: 0; top: 0;
bottom: 0; bottom: 0;
right: 0; right: 0;