feat: Add comprehensive global and component styling for the application, including a dark theme, layout, and various UI elements.

This commit is contained in:
이정수 2026-01-31 03:56:36 +09:00
parent 0d9584e530
commit 2328cb9b5f
1 changed files with 23 additions and 0 deletions

View File

@ -67,6 +67,29 @@ body {
-webkit-font-smoothing: antialiased;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}
::-webkit-scrollbar-corner {
background: transparent;
}
/* Layout */
.app {
display: flex;