setup tailwind and fonts

This commit is contained in:
Aoife
2021-04-06 13:37:15 -04:00
parent 689225a650
commit f2873b0514
5 changed files with 53 additions and 2 deletions
+9
View File
@@ -17,3 +17,12 @@ code {
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.btn {
@apply mx-4 my-1 bg-gray-100 rounded-md w-32 h-10 border-transparent hover:bg-gray-200;
}
.btn:disabled {
@apply opacity-60 hover:bg-gray-100 cursor-default;
}
}