Skip to content

Commit

Permalink
fix(#120): correct variable per border
Browse files Browse the repository at this point in the history
  • Loading branch information
tuurep committed Aug 5, 2024
1 parent 6346769 commit 23ae83f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions static/markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ table {

th, td {
padding: 6px 13px;
border: 1px solid var(--border-muted);
border: 1px solid var(--border-regular);
}

tr:nth-child(even) {
Expand All @@ -75,7 +75,7 @@ input.task-list-item-checkbox {
section.footnotes {
font-size: 0.75rem;
margin-top: 1.25rem;
border-top: 0.2px solid var(--border-regular);
border-top: 0.2px solid var(--border-muted);
color: var(--text-secondary);
}

Expand All @@ -97,7 +97,7 @@ dd {
flex-basis: 80%;
flex-grow: 1;
text-align: left;
border-left: 0.2px solid var(--border-regular);
border-left: 0.2px solid var(--border-muted);
margin: 0;
padding: 0.25em;
margin: 0.25em 0;
Expand All @@ -121,7 +121,7 @@ dt + dt + dd {
blockquote {
padding: 0 1rem;
color: var(--text-secondary);
border-left: .25em solid var(--border-muted);
border-left: .25em solid var(--border-regular);
margin-left: 0;
}

Expand Down Expand Up @@ -185,7 +185,7 @@ blockquote {

/* headings */
h1, h2 {
border-bottom: 0.2px solid var(--border-regular);
border-bottom: 0.2px solid var(--border-muted);
padding-bottom: 0.75rem;
}

Expand All @@ -195,8 +195,8 @@ img, svg { max-width: 100%; }
/* keyboard */
kbd {
background-color: var(--bg-secondary);
border: 1px solid var(--border-muted);
box-shadow: inset 0 -1px 0 var(--border-muted);
border: 1px solid var(--border-regular);
box-shadow: inset 0 -1px 0 var(--border-regular);
padding: 3px 5px;
border-radius: 6px;
}
Expand All @@ -210,6 +210,6 @@ mark {
/* horizontal rule */
hr {
border: 0;
border-top: 0.25em solid var(--border-muted);
border-top: 0.25em solid var(--border-regular);
margin: 24px 0;
}

0 comments on commit 23ae83f

Please sign in to comment.