Move styles into a separate stylesheet

This commit is contained in:
Oliver Davies 2019-08-30 12:55:05 +01:00
parent b292a34b81
commit 6acd746ce9
2 changed files with 24 additions and 25 deletions
vuejs/src/assets/css

View file

@ -0,0 +1,23 @@
@tailwind base;
h1,
h2 {
@apply font-semibold
}
input,
textarea {
@apply w-full border border-gray-400 p-2 mt-1
}
input[type=submit] {
@apply w-full;
@screen sm {
@apply w-auto
}
}
@tailwind components;
@tailwind utilities;