wisali/powershell-sentinel-debugger
0
1/* Custom styles that can't be easily achieved with Tailwind */2pre {3 background-color: #1e293b;4 border-radius: 0.375rem;5 padding: 1rem;6 overflow-x: auto;7}8 9/* Smooth scrolling */10html {11 scroll-behavior: smooth;12}13 14/* Custom scrollbar */15::-webkit-scrollbar {16 width: 8px;17 height: 8px;18}19 20::-webkit-scrollbar-track {21 background: #f1f1f1;22}23 24::-webkit-scrollbar-thumb {25 background: #888;26 border-radius: 4px;27}28 29::-webkit-scrollbar-thumb:hover {30 background: #555;31}