1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 21:33:18 +01:00

Shrink line spacing when searching even further, now looks close to how it looks when not searching

Also fix issue where the last line's dropdown is cut off and creates overflow on the events container. Fixed this by (1) moving the last dropdown up a bit and (2) setting the event container's overflow property as `hidden`
This commit is contained in:
Coteh
2022-03-06 16:57:56 -05:00
parent 8fcc5fc9cc
commit e1635a36c8
2 changed files with 18 additions and 4 deletions

View File

@@ -23,8 +23,21 @@
border: none;
padding: 0.1em;
height: 100%;
& > .icon {
height: 100%;
& > svg {
height: 0.85em;
}
}
}
.is-top .dropdown-menu {
top: 0;
.is-top {
& .dropdown-menu {
top: 0;
}
&.is-last .dropdown-menu {
top: -30px;
}
}
</style>