This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
rebuilding-acquia/src/App.vue

26 lines
472 B
Vue
Raw Normal View History

2018-12-21 18:16:43 +00:00
<template>
2018-12-24 13:34:45 +00:00
<div id="app" class="flex flex-col flex-1">
<router-view class="flex flex-col flex-1"></router-view>
2018-12-21 18:16:43 +00:00
</div>
</template>
2019-03-05 12:15:24 +00:00
<style lang="sass">
@tailwind preflight
@tailwind components
@tailwind utilities
.btn
@apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-dark
&:hover,
&:focus
@apply bg-blue-darker
.btn.is-secondary
@apply bg-grey-dark
&:hover,
&:focus
@apply bg-grey-darker
2018-12-21 18:16:43 +00:00
</style>