refactor: remove Prose component

Now just a regular HTML5 section element
This commit is contained in:
Sebin Nyshkim 2023-01-20 00:50:39 +01:00
parent 600a82d3f2
commit a729113b71

View file

@ -1,36 +0,0 @@
<template>
<div class="prose">
<slot name="default"></slot>
</div>
</template>
<style lang="scss">
@import "@/scss/_mixins.scss";
.prose {
padding: 0 max(1em, env(safe-area-inset-right)) 0
max(1em, env(safe-area-inset-left));
h1,
h2,
h3,
h4,
p,
ul,
blockquote,
.quickfacts,
.btn-group {
@include mq-desktop {
max-width: 45rem;
margin: {
left: auto;
right: auto;
}
}
@include mq-bigscreen {
max-width: 55rem;
}
}
}
</style>