tab-status.css
3 months ago
tools.css
4 weeks ago
tools.js
3 months ago
version-control.js
3 months ago
tab-status.css
19 lines
| 1 | .advads-system-information { |
| 2 | textarea { |
| 3 | @apply w-full block max-w-5xl h-160 p-5 rounded border border-border bg-white text-xs text-secondary-black whitespace-pre-wrap overflow-auto resize-none mb-5 focus:outline-none; |
| 4 | font-family: Menlo, Monaco, monospace; |
| 5 | } |
| 6 | |
| 7 | textarea::-webkit-scrollbar { |
| 8 | @apply w-3; |
| 9 | } |
| 10 | |
| 11 | textarea::-webkit-scrollbar-track { |
| 12 | @apply bg-transparent shadow-none; |
| 13 | } |
| 14 | |
| 15 | textarea::-webkit-scrollbar-thumb { |
| 16 | @apply bg-border rounded-lg border-3 border-transparent bg-clip-content; |
| 17 | } |
| 18 | } |
| 19 |