Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: aligned tables left #3899

Merged
merged 5 commits into from
Mar 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions RFC/src/theme/css/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ h4, h5 { margin-top: 2em; }

.header + .header h3,
.header + .header h4,
.header + .header h5 {
.header + .header h5 {
margin-top: 1em;
}

Expand Down Expand Up @@ -84,12 +84,12 @@ a.header:target h4:before {
}

table {
margin: 0 auto;
border-collapse: collapse;
}
table td {
padding: 3px 20px;
border: 1px var(--table-border-color) solid;
padding: 5px 10px;
}
table thead {
background: var(--table-header-bg);
Expand All @@ -98,6 +98,9 @@ table thead td {
font-weight: 700;
border: none;
}
table thead th {
padding: 5px 10px;
}
table thead tr {
border: 1px var(--table-header-bg) solid;
}
Expand Down Expand Up @@ -147,4 +150,3 @@ blockquote {
.tooltipped .tooltiptext {
visibility: visible;
}