We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3068e89 commit 8070509Copy full SHA for 8070509
1 file changed
src/routes/+page.svelte
@@ -1854,9 +1854,10 @@
1854
position: absolute;
1855
top: 100%;
1856
left: 0;
1857
- /* Bridge the gap so the mouse can cross from button to menu without
1858
- triggering mouseleave on the wrapper. */
1859
- padding-top: 4px;
+ /* Top padding bridges the gap so the mouse can cross from button to
+ menu without triggering mouseleave. The other sides are inner
+ panel padding so item hover doesn't touch the rounded panel edge. */
1860
+ padding: 4px 4px 4px 4px;
1861
min-width: 240px;
1862
max-width: 360px;
1863
z-index: var(--z-popover, 1000);
@@ -1898,6 +1899,7 @@
1898
1899
.recent-item:hover,
1900
.recent-item:focus-visible {
1901
background: var(--surface-hover);
1902
+ color: var(--text);
1903
outline: none;
1904
}
1905
0 commit comments