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
470 B
Vue
Raw Normal View History

2018-11-19 19:54:46 +00:00
<template>
<div id="app">
2018-12-20 01:39:33 +00:00
<skip-link></skip-link>
2018-12-20 00:32:16 +00:00
2018-12-20 01:39:33 +00:00
<welcome title="Rebuilding Bartik"></welcome>
2018-11-19 19:54:46 +00:00
</div>
</template>
<script>
2018-12-20 01:39:33 +00:00
import SkipLink from './components/SkipLink'
import Welcome from './components/Welcome'
2018-11-19 19:54:46 +00:00
export default {
name: 'app',
2018-11-19 19:54:46 +00:00
components: {
2018-12-20 01:39:33 +00:00
SkipLink,
2018-11-20 01:42:41 +00:00
Welcome,
2018-11-19 19:54:46 +00:00
}
}
</script>
<style lang="sass">
@tailwind preflight
@tailwind components
2018-12-20 00:32:16 +00:00
.skip-link:focus
left: 50%
transform: translateX(-50%)
@tailwind utilities
2018-11-19 19:54:46 +00:00
</style>