quotes fix (#1466)

This commit is contained in:
trean
2025-02-17 17:01:36 +01:00
committed by GitHub
parent b4f13d2a64
commit 4bee2f10f8
2 changed files with 14 additions and 1 deletions
@@ -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 {
@@ -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%;