mirror of
https://github.com/imgurbot12/rmenu.git
synced 2025-01-12 23:36:29 +01:00
fix: css boundaries for results updated
This commit is contained in:
parent
7e2302eb64
commit
9e736ccd07
1 changed files with 19 additions and 16 deletions
|
@ -1,19 +1,19 @@
|
|||
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body > div {
|
||||
height: -webkit-fill-available;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
.content {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
body>div {
|
||||
height: -webkit-fill-available;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue