Extract form element styles

This commit is contained in:
Oliver Davies 2019-06-05 09:12:54 +01:00
parent 28537b87e5
commit 6b689ea52f
5 changed files with 18 additions and 3 deletions

View file

@ -54,6 +54,19 @@ export default {
<style type="postcss">
@tailwind base;
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;