diff --git a/.changeset/good-fireants-collect.md b/.changeset/good-fireants-collect.md new file mode 100644 index 0000000000..9a9464dd85 --- /dev/null +++ b/.changeset/good-fireants-collect.md @@ -0,0 +1,5 @@ +--- +"@primer/css": major +--- + +Marketing: Remove unused pullquote selector diff --git a/src/marketing/type/typography.scss b/src/marketing/type/typography.scss index 8520fd2a4f..5c27c5dc9a 100644 --- a/src/marketing/type/typography.scss +++ b/src/marketing/type/typography.scss @@ -113,29 +113,3 @@ .text-medium { font-weight: $font-weight-medium !important; } - -// Pullquote - -@mixin pullquote { - padding-top: 0; - padding-bottom: 0; - padding-left: $spacer; - margin-bottom: $spacer-4; - font-family: $mono-font; - font-size: $h4-size; - line-height: 1.4; - color: var(--color-color-text-secondary); - border-left: 3px solid var(--color-border-default); - - @include breakpoint(md) { - padding-left: $spacer * 1.5; - margin-bottom: $spacer-5; - margin-left: (-$spacer * 1.5) - 3px; - font-size: 18px; - line-height: $lh-default; - } -} - -.pullquote { - @include pullquote; -}