Remove footer spacing (#455)

This commit is contained in:
ABevier 2023-04-13 10:54:48 -04:00 committed by GitHub
parent e233dcc15c
commit 8aa6ca0905
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "tea",
"version": "0.0.30",
"version": "0.0.32",
"private": true,
"description": "tea gui app",
"author": "tea.xyz",

View file

@ -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;

View file

@ -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;
}

View file

@ -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;
}

View file

@ -107,7 +107,7 @@
#content {
width: calc(100vw - 191px);
margin-left: 185px;
height: calc(100vh - 48px - 27px);
height: calc(100vh - 48px);
overflow: hidden;
}