feat: ♻️ refactor ALL THE THINGS!!! (again)

Update to Vue 3 and employ Vue Router, additional design changes and navigation changes
This commit is contained in:
sebin.nyshkim@icloud.com 2022-01-04 00:39:02 +01:00
parent e9f29b655d
commit ae5d4d2633
59 changed files with 2768 additions and 1381 deletions

30
src/components/Prose.vue Normal file
View file

@ -0,0 +1,30 @@
<template>
<div class="prose">
<slot name="default"></slot>
</div>
</template>
<style lang="scss">
@import "@/scss/base.scss";
.prose {
h1,
h2,
h3,
p,
.quickfacts {
max-width: 55rem;
margin: {
left: 1rem;
right: 1rem;
}
@media (min-width: 55em) {
margin: {
left: auto;
right: auto;
}
}
}
}
</style>