Skip to content

Commit

Permalink
feat(pv-stylemark): add styling for table and blockquote from the mar…
Browse files Browse the repository at this point in the history
…kdown
  • Loading branch information
mbehzad committed Apr 11, 2024
1 parent 2085297 commit f363928
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,38 @@
}
}

table {
display: block;
overflow: auto;
border-spacing: 0;
border-collapse: collapse;
}

th {
padding: 6px 12px;
border: 1px solid $dds-color__black-020;
font-weight: 600;
}

td {
padding: 6px 12px;
border: 1px solid $dds-color__black-020;
}

tr {
background-color: $dds-color__white;

&:nth-child(2n) {
background-color: $dds-color__black-000;
}
}

blockquote {
padding: 0 16px;
color: $dds-color__black-050;
border-left: 4px solid $dds-color__black-030;
}

dds-example {
margin: 24px 0 40px;

Expand Down

0 comments on commit f363928

Please sign in to comment.