Skip to content

Commit

Permalink
Fix blockquote padding inside tabset on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Mar 6, 2024
1 parent 8a8e780 commit 90cb5d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions assets/css/tabset.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@
padding-bottom: calc(var(--tabsetPadding) / 2);
}

.tabset-panel pre {
margin-left: calc(-1 * var(--tabsetPadding));
margin-right: calc(-1 * var(--tabsetPadding));
.tabset-panel pre,
.tabset-panel blockquote {
margin-left: calc(-1 * var(--tabsetPadding)) !important;
margin-right: calc(-1 * var(--tabsetPadding)) !important;
}

.tabset-panel > pre code {
Expand Down

0 comments on commit 90cb5d1

Please sign in to comment.