fix: Increase margin of header and ruler for better legibility

fix: Margin of H3 H4 HR was set to zero by reset.css. This was causing
problem in readability.
This commit is contained in:
Ritesh 2020-08-04 18:30:50 +05:30
parent 1ce43af746
commit a8b3da30d6

View File

@ -39,3 +39,10 @@ export default {
},
}
</script>
<style lang="scss">
h3,
h4,
hr {
margin: 8px 0;
}
</style>