Skip to content

Commit

Permalink
quotes fix (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
trean authored Feb 17, 2025
1 parent b4f13d2 commit 4bee2f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,13 @@
}

blockquote {
padding: pxToRem(32) pxToRem(40) 1px;
padding: pxToRem(32) pxToRem(40);
border-radius: $spacer * 0.5;
background: linear-gradient(180deg, #161e33 0%, #0e1424 100%);
color: $neutral-98;
p:last-child {
margin-bottom: 0;
}
}

details {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,16 @@
}
}

blockquote {
padding: pxToRem(32) pxToRem(24);
border-radius: $spacer * 0.5;
background: linear-gradient(180deg, #161e33 0%, #0e1424 100%);
color: $neutral-98;
p:last-child {
margin-bottom: 0;
}
}

@include media-breakpoint-up(xl) {
width: 100%;

Expand Down

0 comments on commit 4bee2f1

Please sign in to comment.