Spaces:
Sleeping
Sleeping
File size: 666 Bytes
96b445e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: #f3f4f6;
}
.preview-container {
transition: all 0.3s ease;
overflow: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
.code-font {
font-family: 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
}
/* Mobile Sidebar Toggle Transition */
.sidebar-transition {
transition: transform 0.3s ease-in-out;
}
|