update tailwind input so all css is processed using tailwind
All checks were successful
Hugo / build (push) Successful in 8s
All checks were successful
Hugo / build (push) Successful in 8s
This commit is contained in:
parent
a3323479a2
commit
263a3c6fe9
3 changed files with 35 additions and 32 deletions
|
@ -1,3 +1,37 @@
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
@layer utilities {
|
||||||
|
.noselect {
|
||||||
|
-webkit-touch-callout: none; /* iOS Safari */
|
||||||
|
-webkit-user-select: none; /* Safari */
|
||||||
|
-khtml-user-select: none; /* Konqueror HTML */
|
||||||
|
-moz-user-select: none; /* Old versions of Firefox */
|
||||||
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
||||||
|
user-select: none; /* Non-prefixed version, currently
|
||||||
|
supported by Chrome, Edge, Opera and Firefox */
|
||||||
|
}
|
||||||
|
#s::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
#s::-webkit-scrollbar-track {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
#s::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #606060;
|
||||||
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
#s::-webkit-scrollbar-thumb:hover {
|
||||||
|
background-color: #909090;
|
||||||
|
}
|
||||||
|
#sc::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
#sc::-webkit-scrollbar-track {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
#sc::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #666b7a;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
.noselect {
|
|
||||||
-webkit-touch-callout: none; /* iOS Safari */
|
|
||||||
-webkit-user-select: none; /* Safari */
|
|
||||||
-khtml-user-select: none; /* Konqueror HTML */
|
|
||||||
-moz-user-select: none; /* Old versions of Firefox */
|
|
||||||
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
||||||
user-select: none; /* Non-prefixed version, currently
|
|
||||||
supported by Chrome, Edge, Opera and Firefox */
|
|
||||||
}
|
|
||||||
#s::-webkit-scrollbar {
|
|
||||||
width: 10px;
|
|
||||||
}
|
|
||||||
#s::-webkit-scrollbar-track {
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
#s::-webkit-scrollbar-thumb {
|
|
||||||
background-color: #606060;
|
|
||||||
border-radius: 20px;
|
|
||||||
}
|
|
||||||
#s::-webkit-scrollbar-thumb:hover {
|
|
||||||
background-color: #909090;
|
|
||||||
}
|
|
||||||
#sc::-webkit-scrollbar {
|
|
||||||
width: 10px;
|
|
||||||
}
|
|
||||||
#sc::-webkit-scrollbar-track {
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
#sc::-webkit-scrollbar-thumb {
|
|
||||||
background-color: #666B7A;
|
|
||||||
}
|
|
2
themes/gallo/static/css/tailwind.min.css
vendored
2
themes/gallo/static/css/tailwind.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue