Move components into separate files

This commit is contained in:
Oliver Davies 2019-03-20 23:21:26 +00:00
parent ec88f7a3a1
commit 11d3aedb37
3 changed files with 13 additions and 12 deletions

View file

@ -1,16 +1,6 @@
@tailwind components;
.tw-button {
@apply inline-block uppercase font-bold text-lg mx-2 py-3 px-5 text-white no-underline bg-black !important;
&:hover,
&:focus {
@apply bg-green-600 text-white !important
}
}
.tw-bg-balloon {
background-image: url(/themes/dcb2017/images/dcb-bg.jpg);
}
@import 'components/balloon.css';
@import 'components/button.css';
@tailwind utilities;

View file

@ -0,0 +1,3 @@
.tw-bg-balloon {
background-image: url(/themes/dcb2017/images/dcb-bg.jpg);
}

View file

@ -0,0 +1,8 @@
.tw-button {
@apply inline-block uppercase font-bold text-lg mx-2 py-3 px-5 text-white no-underline bg-black !important;
&:hover,
&:focus {
@apply bg-green-600 text-white !important
}
}