Feat(fortune): Add custom scrollbar styling for theme modal selection

This commit is contained in:
lifeadventurer
2024-11-06 22:46:32 +08:00
parent 5874d347a0
commit a10be0ef61

View File

@@ -126,6 +126,24 @@ button:hover {
color: var(--title-color);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-color);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: var(--button-color);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--button-hover-color);
}
.color-preview-container {
display: flex;
align-items: center;