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
commit
0759f7e1bb
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue