mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
Remove footer spacing (#455)
This commit is contained in:
parent
e233dcc15c
commit
8aa6ca0905
5 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tea",
|
||||
"version": "0.0.30",
|
||||
"version": "0.0.32",
|
||||
"private": true,
|
||||
"description": "tea gui app",
|
||||
"author": "tea.xyz",
|
||||
|
|
|
@ -112,7 +112,7 @@
|
|||
ul {
|
||||
margin-top: 0px;
|
||||
padding-top: 80px;
|
||||
height: calc(100vh - 76px);
|
||||
height: calc(100vh - 49px);
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
padding-right: 4px;
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
height: calc(100vh - 48px - 27px); /* win.height - title-bar.height - footer.height */
|
||||
height: calc(100vh - 48px); /* win.height - title-bar.height */
|
||||
width: 190px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
overflow: hidden;
|
||||
}
|
||||
section {
|
||||
height: calc(100vh - 50px - 25px); /* win.height - header - footer */
|
||||
height: calc(100vh - 50px); /* win.height - header*/
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
#content {
|
||||
width: calc(100vw - 191px);
|
||||
margin-left: 185px;
|
||||
height: calc(100vh - 48px - 27px);
|
||||
height: calc(100vh - 48px);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue