mirror of
https://git.maid.zone/stuff/soundcloak.git
synced 2026-01-29 14:59:37 +05:00
19 lines
384 B
CSS
19 lines
384 B
CSS
#search-suggestions {
|
|
list-style: none;
|
|
position: absolute;
|
|
background-color: var(--secondary);
|
|
margin: 0;
|
|
padding: 1rem;
|
|
padding-bottom: 0;
|
|
/* god damn this shit i hate webdev */
|
|
width: -moz-available;
|
|
width: -webkit-fill-available;
|
|
}
|
|
|
|
#search-suggestions > li {
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
#search-suggestions > li:hover {
|
|
cursor: pointer;
|
|
} |