fix: css boundaries for results updated

This commit is contained in:
imgurbot12 2024-03-31 13:21:19 -07:00
parent 7e2302eb64
commit 9e736ccd07

View File

@ -1,19 +1,19 @@
body {
overflow: hidden;
}
body > div {
height: -webkit-fill-available;
overflow: hidden;
}
html, html,
body, body,
.content { .content {
margin: 0; margin: 0;
} }
body {
overflow: hidden;
padding-top: 60px;
}
body>div {
height: -webkit-fill-available;
overflow: hidden;
}
.navbar { .navbar {
top: 0; top: 0;
left: 0; left: 0;
@ -23,9 +23,10 @@ body,
} }
.results { .results {
height: 100vh;
margin-top: 50px;
overflow-y: auto; overflow-y: auto;
height: calc(100vh - 60px);
min-height: calc(100vh - 60px);
scroll-margin-top: 60px;
} }
.selected { .selected {
@ -43,19 +44,21 @@ input {
height: 5vw; height: 5vw;
border: none; border: none;
outline: none; outline: none;
padding: 5px; padding: 5px;
font-size: large; font-size: large;
} }
/* Result CSS */ /* Result CSS */
.result, .action { .result,
.action {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: left; justify-content: left;
} }
.result > div, .action > div { .result>div,
.action>div {
margin: 2px 5px; margin: 2px 5px;
} }