More spacing for Markdown formatting

This commit is contained in:
Catherine Luse 2022-01-14 16:43:11 -07:00
parent 22224251d4
commit ed76f4ed88
2 changed files with 52 additions and 12 deletions

View File

@ -49,6 +49,7 @@ export default {
.md {
overflow: auto;
max-width: 100%;
line-height: 1.6;
::v-deep {
* + H1,
@ -62,9 +63,12 @@ export default {
}
::v-deep code {
padding: 0;
font-size: 13.5px;
white-space: break-spaces;
word-break: break-word;
word-wrap: break-word;
padding-left: 5px;
padding-right: 5px;
border: 0;
}
::v-deep pre {
@ -75,6 +79,10 @@ export default {
::v-deep > h1:first-of-type {
display: none;
}
::v-deep p {
margin-bottom: 0.5em;
}
}
</style>

View File

@ -79,18 +79,50 @@ export default {
<Loading v-else />
</template>
<style lang="scss" scoped>
::v-deep {
P {
font-size: initial;
line-height: initial;
font-weight: initial;
letter-spacing: initial;
font-style: normal;
}
<style lang="scss">
::v-deep {
P {
font-size: initial;
line-height: initial;
font-weight: initial;
letter-spacing: initial;
font-style: normal;
}
}
.markdown {
TH {
text-align: left;
}
}
table tr th {
font-weight: bold;
text-align: left;
margin: 0;
padding: 6px 13px;
}
table tr th {
font-weight: bold;
text-align: left;
margin: 0;
padding: 6px 13px;
}
table tr td {
text-align: left;
margin: 0;
padding: 6px 13px;
}
table tr th :first-child, table tr td :first-child {
margin-top: 0;
}
table tr th :last-child, table tr td :last-child {
margin-bottom: 0;
}
}
</style>