1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00
Files
joplin/packages/app-desktop/gui/styles/combobox-wrapper.scss
2025-02-06 17:40:01 +00:00

17 lines
289 B
SCSS

.combobox-wrapper {
> .suggestions {
background-color: var(--joplin-background-color);
width: 50%;
min-width: 20em;
border: 1px solid var(--joplin-border-color4);
border-radius: 5px;
margin-top: 10px;
display: none;
}
&.-expanded > .suggestions {
display: block;
}
}