Spaces:
Sleeping
Sleeping
| /* 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 ; | |
| font-family: 'Menlo', 'Monaco', 'Courier New', monospace ; | |
| font-size: 14px ; | |
| line-height: 1.5 ; | |
| } | |