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

View file

@ -51,28 +51,4 @@ export default {
}
</script>
<style>
@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;
</style>
<style src="./assets/css/tailwind.css"></style>

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;