Open the custom select when it gains focus

This commit is contained in:
banaanihillo 2024-07-06 20:12:51 +03:00
parent f38dcd8647
commit 251df5cdd8

View File

@ -196,7 +196,8 @@ button:hover {
background-color: #f0f0f0;
}
.custom-select:hover .options {
.custom-select:hover .options,
.custom-select:focus-within .options {
display: block;
}