duqing2026's picture
升级优化
96b445e
raw
history blame contribute delete
666 Bytes
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;
}