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,6 +1,12 @@
html,
body,
.content {
margin: 0;
}
body {
overflow: hidden;
padding-top: 60px;
}
body>div {
@ -8,12 +14,6 @@ body > div {
overflow: hidden;
}
html,
body,
.content {
margin: 0;
}
.navbar {
top: 0;
left: 0;
@ -23,9 +23,10 @@ body,
}
.results {
height: 100vh;
margin-top: 50px;
overflow-y: auto;
height: calc(100vh - 60px);
min-height: calc(100vh - 60px);
scroll-margin-top: 60px;
}
.selected {
@ -49,13 +50,15 @@ input {
/* Result CSS */
.result, .action {
.result,
.action {
display: flex;
align-items: center;
justify-content: left;
}
.result > div, .action > div {
.result>div,
.action>div {
margin: 2px 5px;
}