0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 05:02:42 +00:00

dropdown changes

This commit is contained in:
Gazook89
2022-11-22 12:02:27 -06:00
parent d4b803205e
commit 1818ea1e3b
3 changed files with 110 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
.dropdown-container {
position:relative;
.dropdown-options {
position:absolute;
background-color: rgb(227, 227, 227);
z-index: 100;
width: 100%;
border: 1px solid #444;
.item {
font-size: 12px;
font-family: OpenSans;
padding: 5px;
&:hover {
filter: brightness(120%);
}
}
}
}