this repo has no description
1<template>
2 <div class="post">
3 <article id="main-article">
4 <slot />
5 </article>
6 </div>
7</template>
8
9<style lang="scss">
10article#main-article {
11 max-width: 740px;
12 margin: auto;
13 padding: 1rem;
14 text-align: justify;
15
16 li {
17 text-align: left;
18 }
19}
20
21h1 {
22 line-height: 1em;
23}
24
25h2,
26h3,
27h4,
28h5,
29h6,
30h7 {
31 margin-top: 1rem;
32 margin-bottom: 0.5rem;
33}
34
35img {
36 max-width: 100%;
37 display: flex;
38 margin: auto;
39}
40
41.header-post {
42 float: left;
43}
44
45table {
46 thead,
47 td {
48 text-align: center;
49 }
50}
51</style>