duqing2026's picture
Initial commit: Nginx Config Studio
847febc
raw
history blame contribute delete
624 Bytes
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #0f172a;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #475569;
}
/* Prism Overrides for Dark Mode integration */
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none !important;
font-family: 'Menlo', 'Monaco', 'Courier New', monospace !important;
font-size: 14px !important;
line-height: 1.5 !important;
}