Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion src/styles/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,30 @@

/* doc search */
:root {
--docsearch-primary-color: #1d78c1 !important;
--docsearch-key-color: rgb(148 163 184);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could you change this to either rgba or hsla?

}

[data-theme="dark"] {
--docsearch-key-color: rgb(148 163 184);
}
.DocSearch-Button-Key {
width: 20px;
height: 20px;
font-size: 12px;
border-radius: 3px;

background: transparent;
border: 1px solid transparent;
box-shadow: none;
}

.DocSearch-Button-Keys {
gap: 1px;
}
.DocSearch-Button-Key--pressed {
@apply bg-transparent!;
}

.DocSearch-Button {
@apply bg-transparent! lg:bg-gray-500! transition! duration-200! lg:rounded-full!;
}
Expand Down
Loading