forked from webpack/webpack.js.org
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.css
More file actions
31 lines (29 loc) · 842 Bytes
/
tailwind.css
File metadata and controls
31 lines (29 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* @import "tailwindcss/base"; */
/* @import "tailwindcss/components"; */
@import 'tailwindcss/utilities';
/* some customized rules */
.active-menu {
@apply text-blue-200 !important;
}
.active-submenu {
@apply text-black dark:text-white !important;
}
/* doc search */
:root {
--docsearch-primary-color: #1d78c1 !important;
}
.DocSearch-Button {
@apply bg-transparent lg:bg-gray-500 transition duration-200 !important;
}
.DocSearch-Button-Placeholder {
@apply hidden lg:font-light lg:text-sm lg:block lg:text-gray-200 lg:dark:text-gray-300 transition duration-200 !important;
}
.DocSearch-Button:hover .DocSearch-Button-Placeholder {
@apply lg:text-gray-100 !important;
}
.DocSearch-Button-Keys {
@apply hidden lg:flex !important;
}
.DocSearch-Button .DocSearch-Search-Icon {
@apply text-white lg:text-gray-100 !important;
}