This repository has been archived on 2025-01-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-bartik/src/App.vue

32 lines
397 B
Vue
Raw Normal View History

2018-11-19 19:54:46 +00:00
<template>
<div id="app">
2018-11-20 09:12:45 +00:00
<Welcome title="Rebuilding Bartik"/>
2018-11-19 19:54:46 +00:00
</div>
</template>
<script>
2018-11-20 01:42:41 +00:00
import Welcome from './components/Welcome.vue'
2018-11-19 19:54:46 +00:00
export default {
name: 'app',
2018-11-19 19:54:46 +00:00
components: {
2018-11-20 01:42:41 +00:00
Welcome,
2018-11-19 19:54:46 +00:00
}
}
</script>
<style>
2018-11-19 20:11:53 +00:00
@tailwind preflight;
@tailwind components;
2018-12-05 20:02:30 +00:00
.widget {
@apply bg-grey-lightest p-4;
}
.widget:not(:last-child) {
@apply mb-4;
}
2018-11-19 20:11:53 +00:00
@tailwind utilities;
2018-11-19 19:54:46 +00:00
</style>