add Dial to replace sliders

This commit is contained in:
Aoife
2021-04-06 13:44:07 -04:00
parent 0ad9f90fdc
commit 6651765178
9 changed files with 551 additions and 284 deletions
+7 -1
View File
@@ -18,6 +18,12 @@ code {
@tailwind components;
@tailwind utilities;
@layer base {
h3 {
@apply pointer-events-none select-none;
}
}
@layer components {
.btn {
@apply mx-4 my-1 bg-gray-100 rounded-md w-32 h-10 border-transparent hover:bg-gray-200;
@@ -26,6 +32,6 @@ code {
@apply opacity-60 hover:bg-gray-100 cursor-default;
}
.select {
@apply block rounded-md border-gray-300 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50;
@apply select-none block rounded-md border-gray-300 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50;
}
}