diff --git a/src/components/MarkdownFile.vue b/src/components/MarkdownFile.vue index f5a4ad9..3568dd9 100644 --- a/src/components/MarkdownFile.vue +++ b/src/components/MarkdownFile.vue @@ -123,7 +123,7 @@ onBeforeUpdate(() => { diff --git a/src/styles/components/_tables.scss b/src/styles/components/_tables.scss index 10d9274..0e6e341 100644 --- a/src/styles/components/_tables.scss +++ b/src/styles/components/_tables.scss @@ -4,7 +4,9 @@ table { border-collapse: collapse; - margin-bottom:1.5rem; + &:not(:last-child) { + margin-bottom: 1.5rem; + } } th, td { diff --git a/src/styles/custom/_article.scss b/src/styles/custom/_article.scss index 0b55afe..95955cf 100644 --- a/src/styles/custom/_article.scss +++ b/src/styles/custom/_article.scss @@ -1,30 +1,9 @@ -/* Style the tab */ -.tab { - overflow: hidden; - border: 1px solid #ccc; - background-color: #f1f1f1; +.markdown:not(:last-child) { + padding-bottom: 1.5rem; } -/* Style the buttons that are used to open the tab content */ -.tab button { - background-color: inherit; - float: left; - border: none; - outline: none; - cursor: pointer; - padding: 14px 16px; - transition: 0.3s; -} - -/* Change background color of buttons on hover */ -.tab button:hover { - background-color: #ddd; -} - -/* Create an active/current tablink class */ -.tab button.active { - color: #FFF; - background-color: #42B983; +article { + padding-bottom:1.5rem; } article .table-auto table {