Merge pull request #346 from decaf-dev/fix-tab-press

Fix tab press
This commit is contained in:
DecafDev 2024-09-12 17:51:50 -06:00 committed by GitHub
commit c4109a8bf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,6 +78,8 @@
} else {
openDropdown();
}
} else if (e.key === "Tab") {
closeDropdown();
} else {
if (!isOpen) {
openDropdown();
@ -156,6 +158,7 @@
.vault-explorer-dropdown {
position: absolute;
top: calc(100% + 5px);
background-color: var(--dropdown-background);
box-shadow: var(--input-shadow);
width: 100%;