update tailwind input so all css is processed using tailwind
All checks were successful
Hugo / build (push) Successful in 8s

This commit is contained in:
brooke 2024-07-13 17:01:58 -04:00
parent a3323479a2
commit 263a3c6fe9
3 changed files with 35 additions and 32 deletions

View file

@ -1,3 +1,37 @@
@tailwind base;
@tailwind components;
@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;
}
}

View file

@ -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;
}

File diff suppressed because one or more lines are too long