File tree Expand file tree Collapse file tree 3 files changed +20
-7
lines changed
Expand file tree Collapse file tree 3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 11import DefaultTheme from "vitepress/theme" ;
22import "@catppuccin/vitepress/theme/mocha/blue.css" ;
33import './styles/keyboard-shortcuts.css'
4+ import './styles/custom.css'
45import { h } from "vue" ;
56import AnnouncementBanner from './components/AnnouncementBanner.vue'
67
Original file line number Diff line number Diff line change 1+ /* Fix search bar hover animation */
2+ .DocSearch-Button {
3+ transition : all 0.2s ease;
4+ }
5+
6+ .DocSearch-Button : hover {
7+ background-color : var (--vp-c-gray-2 ) !important ;
8+ box-shadow : inset 0 0 0 1px var (--vp-c-brand-1 ) !important ;
9+ }
10+
11+ .dark .DocSearch-Button : hover {
12+ background-color : var (--vp-c-bg ) !important ;
13+ }
14+
15+ /* Ensure the icon and text colors are correct on hover */
16+ .DocSearch-Button : hover .DocSearch-Search-Icon ,
17+ .DocSearch-Button : hover .DocSearch-Button-Placeholder {
18+ color : var (--vp-c-text-1 ) !important ;
19+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments