Adding border lines and spacing on markdown tables.

- Fixes #413
This commit is contained in:
Dessalines 2020-01-14 17:51:27 -05:00
parent d02eb031ba
commit 0bf4242324
1 changed files with 24 additions and 0 deletions

View File

@ -40,6 +40,30 @@
font-size:1.171875rem;
}
.md-div table {
border-collapse: collapse;
width: 100%;
margin-bottom: 1rem;
border: 1px solid var(--dark);
}
.md-div table th,
.md-div table td {
padding: 0.3rem;
vertical-align: top;
border-top: 1px solid var(--dark);
border: 1px solid var(--dark);
}
.md-div table thead th {
vertical-align: bottom;
border-bottom: 2px solid var(--dark);
}
.md-div table tbody + tbody {
border-top: 2px solid var(--dark);
}
.comment-node {
margin-bottom: 10px;
}