Move components into separate files
This commit is contained in:
parent
ec88f7a3a1
commit
11d3aedb37
|
@ -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;
|
||||
|
|
3
assets/css/components/balloon.css
Normal file
3
assets/css/components/balloon.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.tw-bg-balloon {
|
||||
background-image: url(/themes/dcb2017/images/dcb-bg.jpg);
|
||||
}
|
8
assets/css/components/button.css
Normal file
8
assets/css/components/button.css
Normal 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
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue