comparison love/epi/src/index.css @ 38:cf9caa4abc3e

[Love] FE and BE. Can chat and render images. Also created MCP for powerpoint generations.
author MrJuneJune <me@mrjunejune.com>
date Mon, 01 Dec 2025 20:35:56 -0800
parents
children
comparison
equal deleted inserted replaced
37:fb9bcd3145cb 38:cf9caa4abc3e
1 @import "tailwindcss";
2
3 ::-webkit-scrollbar {
4 width: 12px; /* Adjust as needed */
5 height: 12px; /* For horizontal scrollbars */
6 background-color: #2a2a2a; /* Dark background for the entire scrollbar area */
7 }
8
9 ::-webkit-scrollbar-track {
10 background: #1a1a1a; /* Even darker track */
11 border-radius: 10px; /* Optional: rounded corners for the track */
12 }
13
14 ::-webkit-scrollbar-thumb {
15 background-color: #525252; /* Medium dark color for the thumb */
16 border-radius: 10px; /* Optional: rounded corners for the thumb */
17 border: 2px solid #3d3d3d; /* Optional: border around the thumb */
18 }
19
20 ::-webkit-scrollbar-thumb:hover {
21 background-color: #6a6a6a; /* Lighter color on hover */
22 }