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

48 lines
695 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-10 08:11:08 +00:00
<style lang="postcss">
2019-03-10 08:32:59 +00:00
@tailwind base;
2019-03-10 08:11:08 +00:00
@tailwind components;
2019-03-05 12:15:24 +00:00
2019-03-10 08:35:40 +00:00
h1,
h2 {
@apply font-bold
}
h2 {
@apply text-2xl
}
2019-03-10 08:11:08 +00:00
.btn {
2019-03-10 09:04:53 +00:00
@apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-3;
2019-03-05 12:15:24 +00:00
&:hover,
2019-03-10 08:11:08 +00:00
&:focus {
2019-03-10 09:04:53 +00:00
@apply bg-blue-4
2019-03-10 08:11:08 +00:00
}
}
2019-03-05 12:15:24 +00:00
2019-03-10 08:11:08 +00:00
.btn.is-secondary {
2019-03-10 09:04:53 +00:00
@apply bg-grey-5;
2019-03-05 12:15:24 +00:00
&:hover,
2019-03-10 08:11:08 +00:00
&:focus {
2019-03-10 09:04:53 +00:00
@apply bg-grey-6
2019-03-10 08:11:08 +00:00
}
}
2019-03-05 12:15:36 +00:00
2019-03-10 08:11:08 +00:00
.tag {
2019-03-10 09:04:53 +00:00
@apply text-2xs uppercase py-1 px-2 rounded border border-grey-4 bg-white mr-2 mb-2
2019-03-10 08:11:08 +00:00
}
2019-03-05 12:15:36 +00:00
2019-03-10 08:11:08 +00:00
.tag.is-type {
2019-03-10 09:04:53 +00:00
@apply bg-blue-1 border-blue-1 text-white
2019-03-10 08:11:08 +00:00
}
@tailwind utilities;
2018-12-21 18:16:43 +00:00
</style>