Extract app.css
This commit is contained in:
parent
61461fd0b8
commit
38f2fe2120
39
src/App.vue
39
src/App.vue
|
@ -6,41 +6,4 @@
|
|||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="postcss">
|
||||
@tailwind base;
|
||||
|
||||
html {
|
||||
line-height: 1.15;
|
||||
}
|
||||
|
||||
@tailwind components;
|
||||
|
||||
h1,
|
||||
h2 {
|
||||
@apply font-bold
|
||||
}
|
||||
|
||||
h2 {
|
||||
@apply text-2xl
|
||||
}
|
||||
|
||||
.btn {
|
||||
@apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-300;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
@apply bg-blue-400
|
||||
}
|
||||
}
|
||||
|
||||
.btn.is-secondary {
|
||||
@apply bg-gray-500;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
@apply bg-gray-600
|
||||
}
|
||||
}
|
||||
|
||||
@tailwind utilities;
|
||||
</style>
|
||||
<style src="./css/app.css"/>
|
||||
|
|
36
src/css/app.css
Normal file
36
src/css/app.css
Normal file
|
@ -0,0 +1,36 @@
|
|||
@tailwind base;
|
||||
|
||||
html {
|
||||
line-height: 1.15;
|
||||
}
|
||||
|
||||
@tailwind components;
|
||||
|
||||
h1,
|
||||
h2 {
|
||||
@apply font-bold
|
||||
}
|
||||
|
||||
h2 {
|
||||
@apply text-2xl
|
||||
}
|
||||
|
||||
.btn {
|
||||
@apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-300;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
@apply bg-blue-400
|
||||
}
|
||||
}
|
||||
|
||||
.btn.is-secondary {
|
||||
@apply bg-gray-500;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
@apply bg-gray-600
|
||||
}
|
||||
}
|
||||
|
||||
@tailwind utilities;
|
Reference in a new issue