feat: add repo sync page
This commit is contained in:
@@ -164,3 +164,41 @@ input[type="number"]:hover::-webkit-outer-spin-button {
|
||||
.dark input[type="number"]:hover::-webkit-outer-spin-button {
|
||||
filter: invert(0.85);
|
||||
}
|
||||
|
||||
/* Custom scrollbar styles */
|
||||
.custom-scrollbar::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
}
|
||||
|
||||
.custom-scrollbar::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.custom-scrollbar::-webkit-scrollbar-thumb {
|
||||
background: oklch(0.7 0 0 / 30%);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
||||
background: oklch(0.6 0 0 / 50%);
|
||||
}
|
||||
|
||||
.dark .custom-scrollbar::-webkit-scrollbar-thumb {
|
||||
background: oklch(0.5 0 0 / 40%);
|
||||
}
|
||||
|
||||
.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
||||
background: oklch(0.6 0 0 / 60%);
|
||||
}
|
||||
|
||||
/* Firefox scrollbar */
|
||||
.custom-scrollbar {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: oklch(0.7 0 0 / 30%) transparent;
|
||||
}
|
||||
|
||||
.dark .custom-scrollbar {
|
||||
scrollbar-color: oklch(0.5 0 0 / 40%) transparent;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user