This repository has been archived on 2025-10-03. 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-uis/src/App.vue

33 lines
522 B
Vue
Raw Normal View History

2018-11-19 19:54:46 +00:00
<template>
2019-05-07 18:02:59 +01:00
<div id="app" class="font-sans text-black bg-black text-sm leading-normal">
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,
2019-03-30 00:13:30 +00:00
Welcome
2018-11-19 19:54:46 +00:00
}
}
</script>
2019-03-09 20:26:24 +00:00
<style>
2019-03-10 00:15:14 +00:00
@tailwind base;
2019-03-09 20:26:24 +00:00
@tailwind components;
2018-12-20 00:32:16 +00:00
2019-03-09 20:26:24 +00:00
.skip-link:focus {
left: 50%;
transform: translateX(-50%);
}
2018-12-20 00:32:16 +00:00
2019-03-09 20:26:24 +00:00
@tailwind utilities;
2018-11-19 19:54:46 +00:00
</style>