diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2024-02-22 19:12:22 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2024-02-22 19:12:22 +0200 |
| commit | 481ae0c24785a1798a0445a2a982acce6db7e4f2 (patch) | |
| tree | a196dc99bc09b0ffe6a01a99d45b5efab0bf9e4d /src/index.css | |
| parent | 4f1971020d43d0958973712212f17bd9d51a1834 (diff) | |
| download | ollama-logseq-481ae0c24785a1798a0445a2a982acce6db7e4f2.tar.xz ollama-logseq-481ae0c24785a1798a0445a2a982acce6db7e4f2.zip | |
Added the ability to Ask in context of the block only instead of the whole page
Diffstat (limited to 'src/index.css')
| -rw-r--r-- | src/index.css | 62 |
1 files changed, 44 insertions, 18 deletions
diff --git a/src/index.css b/src/index.css index a20f5ca..68c8203 100644 --- a/src/index.css +++ b/src/index.css @@ -1,7 +1,7 @@ @tailwind base; @tailwind components; @tailwind utilities; - + @layer base { :root { --background: 0 0% 100%; @@ -9,68 +9,94 @@ --card: 0 0% 100%; --card-foreground: 222.2 84% 4.9%; - + --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; - + --primary: 222.2 47.4% 11.2%; --primary-foreground: 210 40% 98%; - + --secondary: 210 40% 96.1%; --secondary-foreground: 222.2 47.4% 11.2%; - + --muted: 210 40% 96.1%; --muted-foreground: 215.4 16.3% 46.9%; - + --accent: 210 40% 96.1%; --accent-foreground: 222.2 47.4% 11.2%; - + --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 40% 98%; --border: 214.3 31.8% 91.4%; --input: 214.3 31.8% 91.4%; --ring: 222.2 84% 4.9%; - + --radius: 0.5rem; } - + .dark { --background: 222.2 84% 4.9%; --foreground: 210 40% 98%; - + --card: 222.2 84% 4.9%; --card-foreground: 210 40% 98%; - + --popover: 222.2 84% 4.9%; --popover-foreground: 210 40% 98%; - + --primary: 210 40% 98%; --primary-foreground: 222.2 47.4% 11.2%; - + --secondary: 217.2 32.6% 17.5%; --secondary-foreground: 210 40% 98%; - + --muted: 217.2 32.6% 17.5%; --muted-foreground: 215 20.2% 65.1%; - + --accent: 217.2 32.6% 17.5%; --accent-foreground: 210 40% 98%; - + --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 40% 98%; - + --border: 217.2 32.6% 17.5%; --input: 217.2 32.6% 17.5%; --ring: 212.7 26.8% 83.9%; } } - + @layer base { * { @apply border-border; } + /* body { */ /* @apply bg-background text-foreground; */ /* } */ } + + +/* Custom scrollbar styles */ +/* Works in Firefox, Chrome, Edge, Safari */ + +/* Track */ +::-webkit-scrollbar { + width: 10px; + border-radius: 5px; + /* Adjust to make scrollbar rounded */ + background-color: #000000; + /* Gray background color */ +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: #808080; + border-radius: 5px; + /* Adjust to make scrollbar thumb rounded */ +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #555; +} |
