diff --git a/src/index.js b/src/index.js index b24c5b0..586902c 100644 --- a/src/index.js +++ b/src/index.js @@ -10,19 +10,21 @@ const computed = { // bulletColor: (color) => ({ 'ul > li::before': { backgroundColor: color } }), } -function inWhere(selector, className) { +function inWhere(selector, { className, prefix }) { + let prefixedNot = prefix(`.not-${className}`).slice(1) + if (selector.endsWith('::before')) { - return `:where(${selector.slice(0, -8)}):not(:where(.not-${className} *))::before` + return `:where(${selector.slice(0, -8)}):not(:where([class~="${prefixedNot}"] *))::before` } if (selector.endsWith('::after')) { - return `:where(${selector.slice(0, -7)}):not(:where(.not-${className} *))::after` + return `:where(${selector.slice(0, -7)}):not(:where([class~="${prefixedNot}"] *))::after` } - return `:where(${selector}):not(:where(.not-${className} *))` + return `:where(${selector}):not(:where([class~="${prefixedNot}"] *))` } -function configToCss(config = {}, { target, className }) { +function configToCss(config = {}, { target, className, prefix }) { return Object.fromEntries( Object.entries( merge( @@ -38,7 +40,7 @@ function configToCss(config = {}, { target, className }) { } if (typeof v == 'object' && v.constructor == Object) { - return [inWhere(k, className), v] + return [inWhere(k, { className, prefix }), v] } return [k, v] @@ -48,7 +50,7 @@ function configToCss(config = {}, { target, className }) { module.exports = plugin.withOptions( ({ modifiers, className = 'prose', target = 'modern' } = {}) => { - return function ({ addComponents, theme, variants }) { + return function ({ addComponents, theme, variants, prefix }) { const DEFAULT_MODIFIERS = [ 'DEFAULT', 'sm', @@ -74,7 +76,7 @@ module.exports = plugin.withOptions( all.map((modifier) => ({ [modifier === 'DEFAULT' ? `.${className}` : `.${className}-${modifier}`]: configToCss( config[modifier], - { target, className }, + { target, className, prefix } ), })), variants('typography') diff --git a/src/index.test.js b/src/index.test.js index 1716f44..3ce3cf6 100644 --- a/src/index.test.js +++ b/src/index.test.js @@ -47,65 +47,65 @@ it('should generate the default classes for the typography components', async () color: #374151; max-width: 65ch; } - .prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .prose :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { color: #4b5563; font-size: 1.25em; line-height: 1.6; margin-top: 1.2em; margin-bottom: 1.2em; } - .prose :where(a):not(:where(.not-prose *)) { + .prose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; text-decoration: underline; font-weight: 500; } - .prose :where(strong):not(:where(.not-prose *)) { + .prose :where(strong):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; } - .prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"A\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"a\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"A\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"a\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"I\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"i\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"I\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"i\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { + .prose :where(ol[type=\\"1\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: decimal; } - .prose :where(ol > li):not(:where(.not-prose *)) { + .prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .prose :where(ol > li):not(:where(.not-prose *))::before { + .prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; position: absolute; font-weight: 400; color: #6b7280; left: 0; } - .prose :where(ul > li):not(:where(.not-prose *)) { + .prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .prose :where(ul > li):not(:where(.not-prose *))::before { + .prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\\"; position: absolute; background-color: #d1d5db; @@ -115,13 +115,13 @@ it('should generate the default classes for the typography components', async () top: calc(0.875em - 0.1875em); left: 0.25em; } - .prose :where(hr):not(:where(.not-prose *)) { + .prose :where(hr):not(:where([class~=\\"not-prose\\"] *)) { border-color: #e5e7eb; border-top-width: 1px; margin-top: 3em; margin-bottom: 3em; } - .prose :where(blockquote):not(:where(.not-prose *)) { + .prose :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 500; font-style: italic; color: #111827; @@ -132,13 +132,13 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1.6em; padding-left: 1em; } - .prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + .prose :where(blockquote p:first-of-type):not(:where([class~=\\"not-prose\\"] *))::before { content: open-quote; } - .prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + .prose :where(blockquote p:last-of-type):not(:where([class~=\\"not-prose\\"] *))::after { content: close-quote; } - .prose :where(h1):not(:where(.not-prose *)) { + .prose :where(h1):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 800; font-size: 2.25em; @@ -146,10 +146,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.8888889em; line-height: 1.1111111; } - .prose :where(h1 strong):not(:where(.not-prose *)) { + .prose :where(h1 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 900; } - .prose :where(h2):not(:where(.not-prose *)) { + .prose :where(h2):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 700; font-size: 1.5em; @@ -157,10 +157,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1em; line-height: 1.3333333; } - .prose :where(h2 strong):not(:where(.not-prose *)) { + .prose :where(h2 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 800; } - .prose :where(h3):not(:where(.not-prose *)) { + .prose :where(h3):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 1.25em; @@ -168,40 +168,40 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.6em; line-height: 1.6; } - .prose :where(h3 strong):not(:where(.not-prose *)) { + .prose :where(h3 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .prose :where(h4):not(:where(.not-prose *)) { + .prose :where(h4):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.5; } - .prose :where(h4 strong):not(:where(.not-prose *)) { + .prose :where(h4 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .prose :where(figure figcaption):not(:where(.not-prose *)) { + .prose :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { color: #6b7280; font-size: 0.875em; line-height: 1.4285714; margin-top: 0.8571429em; } - .prose :where(code):not(:where(.not-prose *)) { + .prose :where(code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 0.875em; } - .prose :where(code):not(:where(.not-prose *))::before { + .prose :where(code):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\`\\"; } - .prose :where(code):not(:where(.not-prose *))::after { + .prose :where(code):not(:where([class~=\\"not-prose\\"] *))::after { content: \\"\`\\"; } - .prose :where(a code):not(:where(.not-prose *)) { + .prose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; } - .prose :where(pre):not(:where(.not-prose *)) { + .prose :where(pre):not(:where([class~=\\"not-prose\\"] *)) { color: #e5e7eb; background-color: #1f2937; overflow-x: auto; @@ -215,7 +215,7 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.8571429em; padding-left: 1.1428571em; } - .prose :where(pre code):not(:where(.not-prose *)) { + .prose :where(pre code):not(:where([class~=\\"not-prose\\"] *)) { background-color: transparent; border-width: 0; border-radius: 0; @@ -226,13 +226,13 @@ it('should generate the default classes for the typography components', async () font-family: inherit; line-height: inherit; } - .prose :where(pre code):not(:where(.not-prose *))::before { + .prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::before { content: none; } - .prose :where(pre code):not(:where(.not-prose *))::after { + .prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::after { content: none; } - .prose :where(table):not(:where(.not-prose *)) { + .prose :where(table):not(:where([class~=\\"not-prose\\"] *)) { width: 100%; table-layout: auto; text-align: left; @@ -241,26 +241,26 @@ it('should generate the default classes for the typography components', async () font-size: 0.875em; line-height: 1.7142857; } - .prose :where(thead):not(:where(.not-prose *)) { + .prose :where(thead):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; border-bottom-width: 1px; border-bottom-color: #d1d5db; } - .prose :where(thead th):not(:where(.not-prose *)) { + .prose :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: bottom; padding-right: 0.5714286em; padding-bottom: 0.5714286em; padding-left: 0.5714286em; } - .prose :where(tbody tr):not(:where(.not-prose *)) { + .prose :where(tbody tr):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 1px; border-bottom-color: #e5e7eb; } - .prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + .prose :where(tbody tr:last-child):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 0; } - .prose :where(tbody td):not(:where(.not-prose *)) { + .prose :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: top; padding-top: 0.5714286em; padding-right: 0.5714286em; @@ -271,167 +271,167 @@ it('should generate the default classes for the typography components', async () font-size: 1rem; line-height: 1.75; } - .prose :where(p):not(:where(.not-prose *)) { + .prose :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .prose :where(img):not(:where(.not-prose *)) { + .prose :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose :where(video):not(:where(.not-prose *)) { + .prose :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose :where(figure):not(:where(.not-prose *)) { + .prose :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose :where(figure > *):not(:where(.not-prose *)) { + .prose :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .prose :where(h2 code):not(:where(.not-prose *)) { + .prose :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .prose :where(h3 code):not(:where(.not-prose *)) { + .prose :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .prose :where(ol):not(:where(.not-prose *)) { + .prose :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .prose :where(ul):not(:where(.not-prose *)) { + .prose :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .prose :where(li):not(:where(.not-prose *)) { + .prose :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .prose :where(> ul > li p):not(:where(.not-prose *)) { + .prose :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .prose :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .prose :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .prose :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .prose :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .prose :where(hr + *):not(:where(.not-prose *)) { + .prose :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose :where(h2 + *):not(:where(.not-prose *)) { + .prose :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose :where(h3 + *):not(:where(.not-prose *)) { + .prose :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose :where(h4 + *):not(:where(.not-prose *)) { + .prose :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose :where(thead th:first-child):not(:where(.not-prose *)) { + .prose :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose :where(thead th:last-child):not(:where(.not-prose *)) { + .prose :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose :where(tbody td:first-child):not(:where(.not-prose *)) { + .prose :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose :where(tbody td:last-child):not(:where(.not-prose *)) { + .prose :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose :where(> :first-child):not(:where(.not-prose *)) { + .prose :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose :where(> :last-child):not(:where(.not-prose *)) { + .prose :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .prose-sm { font-size: 0.875rem; line-height: 1.7142857; } - .prose-sm :where(p):not(:where(.not-prose *)) { + .prose-sm :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .prose-sm :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; line-height: 1.5555556; margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .prose-sm :where(blockquote):not(:where(.not-prose *)) { + .prose-sm :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; padding-left: 1.1111111em; } - .prose-sm :where(h1):not(:where(.not-prose *)) { + .prose-sm :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.1428571em; margin-top: 0; margin-bottom: 0.8em; line-height: 1.2; } - .prose-sm :where(h2):not(:where(.not-prose *)) { + .prose-sm :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.4285714em; margin-top: 1.6em; margin-bottom: 0.8em; line-height: 1.4; } - .prose-sm :where(h3):not(:where(.not-prose *)) { + .prose-sm :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; margin-top: 1.5555556em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .prose-sm :where(h4):not(:where(.not-prose *)) { + .prose-sm :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.4285714em; margin-bottom: 0.5714286em; line-height: 1.4285714; } - .prose-sm :where(img):not(:where(.not-prose *)) { + .prose-sm :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .prose-sm :where(video):not(:where(.not-prose *)) { + .prose-sm :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .prose-sm :where(figure):not(:where(.not-prose *)) { + .prose-sm :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .prose-sm :where(figure > *):not(:where(.not-prose *)) { + .prose-sm :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .prose-sm :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.3333333; margin-top: 0.6666667em; } - .prose-sm :where(code):not(:where(.not-prose *)) { + .prose-sm :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; } - .prose-sm :where(h2 code):not(:where(.not-prose *)) { + .prose-sm :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .prose-sm :where(h3 code):not(:where(.not-prose *)) { + .prose-sm :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .prose-sm :where(pre):not(:where(.not-prose *)) { + .prose-sm :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.6666667; margin-top: 1.6666667em; @@ -442,175 +442,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.6666667em; padding-left: 1em; } - .prose-sm :where(ol):not(:where(.not-prose *)) { + .prose-sm :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .prose-sm :where(ul):not(:where(.not-prose *)) { + .prose-sm :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .prose-sm :where(li):not(:where(.not-prose *)) { + .prose-sm :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.2857143em; margin-bottom: 0.2857143em; } - .prose-sm :where(ol > li):not(:where(.not-prose *)) { + .prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .prose-sm :where(ol > li):not(:where(.not-prose *))::before { + .prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .prose-sm :where(ul > li):not(:where(.not-prose *)) { + .prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .prose-sm :where(ul > li):not(:where(.not-prose *))::before { + .prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { height: 0.3571429em; width: 0.3571429em; top: calc(0.8571429em - 0.1785714em); left: 0.2142857em; } - .prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + .prose-sm :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .prose-sm :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .prose-sm :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .prose-sm :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .prose-sm :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .prose-sm :where(hr):not(:where(.not-prose *)) { + .prose-sm :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8571429em; margin-bottom: 2.8571429em; } - .prose-sm :where(hr + *):not(:where(.not-prose *)) { + .prose-sm :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-sm :where(h2 + *):not(:where(.not-prose *)) { + .prose-sm :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-sm :where(h3 + *):not(:where(.not-prose *)) { + .prose-sm :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-sm :where(h4 + *):not(:where(.not-prose *)) { + .prose-sm :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-sm :where(table):not(:where(.not-prose *)) { + .prose-sm :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.5; } - .prose-sm :where(thead th):not(:where(.not-prose *)) { + .prose-sm :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + .prose-sm :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + .prose-sm :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-sm :where(tbody td):not(:where(.not-prose *)) { + .prose-sm :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.6666667em; padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + .prose-sm :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + .prose-sm :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-sm :where(> :first-child):not(:where(.not-prose *)) { + .prose-sm :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-sm :where(> :last-child):not(:where(.not-prose *)) { + .prose-sm :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .prose-lg { font-size: 1.125rem; line-height: 1.7777778; } - .prose-lg :where(p):not(:where(.not-prose *)) { + .prose-lg :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .prose-lg :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2222222em; line-height: 1.4545455; margin-top: 1.0909091em; margin-bottom: 1.0909091em; } - .prose-lg :where(blockquote):not(:where(.not-prose *)) { + .prose-lg :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 1.6666667em; padding-left: 1em; } - .prose-lg :where(h1):not(:where(.not-prose *)) { + .prose-lg :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.8333333em; line-height: 1; } - .prose-lg :where(h2):not(:where(.not-prose *)) { + .prose-lg :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.6666667em; margin-top: 1.8666667em; margin-bottom: 1.0666667em; line-height: 1.3333333; } - .prose-lg :where(h3):not(:where(.not-prose *)) { + .prose-lg :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.3333333em; margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .prose-lg :where(h4):not(:where(.not-prose *)) { + .prose-lg :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .prose-lg :where(img):not(:where(.not-prose *)) { + .prose-lg :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .prose-lg :where(video):not(:where(.not-prose *)) { + .prose-lg :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .prose-lg :where(figure):not(:where(.not-prose *)) { + .prose-lg :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .prose-lg :where(figure > *):not(:where(.not-prose *)) { + .prose-lg :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + .prose-lg :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; margin-top: 1em; } - .prose-lg :where(code):not(:where(.not-prose *)) { + .prose-lg :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .prose-lg :where(h2 code):not(:where(.not-prose *)) { + .prose-lg :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8666667em; } - .prose-lg :where(h3 code):not(:where(.not-prose *)) { + .prose-lg :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .prose-lg :where(pre):not(:where(.not-prose *)) { + .prose-lg :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.75; margin-top: 2em; @@ -621,175 +621,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1em; padding-left: 1.5em; } - .prose-lg :where(ol):not(:where(.not-prose *)) { + .prose-lg :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .prose-lg :where(ul):not(:where(.not-prose *)) { + .prose-lg :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .prose-lg :where(li):not(:where(.not-prose *)) { + .prose-lg :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .prose-lg :where(ol > li):not(:where(.not-prose *)) { + .prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .prose-lg :where(ol > li):not(:where(.not-prose *))::before { + .prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .prose-lg :where(ul > li):not(:where(.not-prose *)) { + .prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .prose-lg :where(ul > li):not(:where(.not-prose *))::before { + .prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8888889em - 0.1666667em); left: 0.2222222em; } - .prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + .prose-lg :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .prose-lg :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .prose-lg :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .prose-lg :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .prose-lg :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .prose-lg :where(hr):not(:where(.not-prose *)) { + .prose-lg :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3.1111111em; margin-bottom: 3.1111111em; } - .prose-lg :where(hr + *):not(:where(.not-prose *)) { + .prose-lg :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-lg :where(h2 + *):not(:where(.not-prose *)) { + .prose-lg :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .prose-lg :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .prose-lg :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-lg :where(table):not(:where(.not-prose *)) { + .prose-lg :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; } - .prose-lg :where(thead th):not(:where(.not-prose *)) { + .prose-lg :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + .prose-lg :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + .prose-lg :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-lg :where(tbody td):not(:where(.not-prose *)) { + .prose-lg :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.75em; padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + .prose-lg :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + .prose-lg :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-lg :where(> :first-child):not(:where(.not-prose *)) { + .prose-lg :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-lg :where(> :last-child):not(:where(.not-prose *)) { + .prose-lg :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .prose-xl { font-size: 1.25rem; line-height: 1.8; } - .prose-xl :where(p):not(:where(.not-prose *)) { + .prose-xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .prose-xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2em; line-height: 1.5; margin-top: 1em; margin-bottom: 1em; } - .prose-xl :where(blockquote):not(:where(.not-prose *)) { + .prose-xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6em; margin-bottom: 1.6em; padding-left: 1.0666667em; } - .prose-xl :where(h1):not(:where(.not-prose *)) { + .prose-xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.8em; margin-top: 0; margin-bottom: 0.8571429em; line-height: 1; } - .prose-xl :where(h2):not(:where(.not-prose *)) { + .prose-xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.8em; margin-top: 1.5555556em; margin-bottom: 0.8888889em; line-height: 1.1111111; } - .prose-xl :where(h3):not(:where(.not-prose *)) { + .prose-xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.6em; margin-bottom: 0.6666667em; line-height: 1.3333333; } - .prose-xl :where(h4):not(:where(.not-prose *)) { + .prose-xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.8em; margin-bottom: 0.6em; line-height: 1.6; } - .prose-xl :where(img):not(:where(.not-prose *)) { + .prose-xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose-xl :where(video):not(:where(.not-prose *)) { + .prose-xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose-xl :where(figure):not(:where(.not-prose *)) { + .prose-xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose-xl :where(figure > *):not(:where(.not-prose *)) { + .prose-xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + .prose-xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; margin-top: 1em; } - .prose-xl :where(code):not(:where(.not-prose *)) { + .prose-xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .prose-xl :where(h2 code):not(:where(.not-prose *)) { + .prose-xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8611111em; } - .prose-xl :where(h3 code):not(:where(.not-prose *)) { + .prose-xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .prose-xl :where(pre):not(:where(.not-prose *)) { + .prose-xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.7777778; margin-top: 2em; @@ -800,175 +800,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.1111111em; padding-left: 1.3333333em; } - .prose-xl :where(ol):not(:where(.not-prose *)) { + .prose-xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .prose-xl :where(ul):not(:where(.not-prose *)) { + .prose-xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .prose-xl :where(li):not(:where(.not-prose *)) { + .prose-xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6em; margin-bottom: 0.6em; } - .prose-xl :where(ol > li):not(:where(.not-prose *)) { + .prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .prose-xl :where(ol > li):not(:where(.not-prose *))::before { + .prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .prose-xl :where(ul > li):not(:where(.not-prose *)) { + .prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .prose-xl :where(ul > li):not(:where(.not-prose *))::before { + .prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.35em; height: 0.35em; top: calc(0.9em - 0.175em); left: 0.25em; } - .prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + .prose-xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .prose-xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .prose-xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .prose-xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .prose-xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .prose-xl :where(hr):not(:where(.not-prose *)) { + .prose-xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8em; margin-bottom: 2.8em; } - .prose-xl :where(hr + *):not(:where(.not-prose *)) { + .prose-xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-xl :where(h2 + *):not(:where(.not-prose *)) { + .prose-xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .prose-xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-xl :where(h4 + *):not(:where(.not-prose *)) { + .prose-xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-xl :where(table):not(:where(.not-prose *)) { + .prose-xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; } - .prose-xl :where(thead th):not(:where(.not-prose *)) { + .prose-xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + .prose-xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + .prose-xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-xl :where(tbody td):not(:where(.not-prose *)) { + .prose-xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8888889em; padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .prose-xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .prose-xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-xl :where(> :first-child):not(:where(.not-prose *)) { + .prose-xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-xl :where(> :last-child):not(:where(.not-prose *)) { + .prose-xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .prose-2xl { font-size: 1.5rem; line-height: 1.6666667; } - .prose-2xl :where(p):not(:where(.not-prose *)) { + .prose-2xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .prose-2xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.25em; line-height: 1.4666667; margin-top: 1.0666667em; margin-bottom: 1.0666667em; } - .prose-2xl :where(blockquote):not(:where(.not-prose *)) { + .prose-2xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; padding-left: 1.1111111em; } - .prose-2xl :where(h1):not(:where(.not-prose *)) { + .prose-2xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.875em; line-height: 1; } - .prose-2xl :where(h2):not(:where(.not-prose *)) { + .prose-2xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2em; margin-top: 1.5em; margin-bottom: 0.8333333em; line-height: 1.0833333; } - .prose-2xl :where(h3):not(:where(.not-prose *)) { + .prose-2xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.5555556em; margin-bottom: 0.6666667em; line-height: 1.2222222; } - .prose-2xl :where(h4):not(:where(.not-prose *)) { + .prose-2xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .prose-2xl :where(img):not(:where(.not-prose *)) { + .prose-2xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose-2xl :where(video):not(:where(.not-prose *)) { + .prose-2xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose-2xl :where(figure):not(:where(.not-prose *)) { + .prose-2xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .prose-2xl :where(figure > *):not(:where(.not-prose *)) { + .prose-2xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + .prose-2xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.6; margin-top: 1em; } - .prose-2xl :where(code):not(:where(.not-prose *)) { + .prose-2xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; } - .prose-2xl :where(h2 code):not(:where(.not-prose *)) { + .prose-2xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .prose-2xl :where(h3 code):not(:where(.not-prose *)) { + .prose-2xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .prose-2xl :where(pre):not(:where(.not-prose *)) { + .prose-2xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.8; margin-top: 2em; @@ -979,226 +979,226 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.2em; padding-left: 1.6em; } - .prose-2xl :where(ol):not(:where(.not-prose *)) { + .prose-2xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .prose-2xl :where(ul):not(:where(.not-prose *)) { + .prose-2xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .prose-2xl :where(li):not(:where(.not-prose *)) { + .prose-2xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .prose-2xl :where(ol > li):not(:where(.not-prose *)) { + .prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + .prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .prose-2xl :where(ul > li):not(:where(.not-prose *)) { + .prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + .prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8333333em - 0.1666667em); left: 0.25em; } - .prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + .prose-2xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8333333em; margin-bottom: 0.8333333em; } - .prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .prose-2xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .prose-2xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .prose-2xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .prose-2xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .prose-2xl :where(hr):not(:where(.not-prose *)) { + .prose-2xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3em; margin-bottom: 3em; } - .prose-2xl :where(hr + *):not(:where(.not-prose *)) { + .prose-2xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + .prose-2xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .prose-2xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .prose-2xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-2xl :where(table):not(:where(.not-prose *)) { + .prose-2xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.4; } - .prose-2xl :where(thead th):not(:where(.not-prose *)) { + .prose-2xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + .prose-2xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + .prose-2xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-2xl :where(tbody td):not(:where(.not-prose *)) { + .prose-2xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8em; padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .prose-2xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .prose-2xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + .prose-2xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + .prose-2xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } - .prose-slate :where(a):not(:where(.not-prose *)) { + .prose-slate :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .prose-slate :where(a code):not(:where(.not-prose *)) { + .prose-slate :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .prose-zinc :where(a):not(:where(.not-prose *)) { + .prose-zinc :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .prose-zinc :where(a code):not(:where(.not-prose *)) { + .prose-zinc :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .prose-neutral :where(a):not(:where(.not-prose *)) { + .prose-neutral :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .prose-neutral :where(a code):not(:where(.not-prose *)) { + .prose-neutral :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .prose-stone :where(a):not(:where(.not-prose *)) { + .prose-stone :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .prose-stone :where(a code):not(:where(.not-prose *)) { + .prose-stone :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .prose-red :where(a):not(:where(.not-prose *)) { + .prose-red :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .prose-red :where(a code):not(:where(.not-prose *)) { + .prose-red :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .prose-orange :where(a):not(:where(.not-prose *)) { + .prose-orange :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .prose-orange :where(a code):not(:where(.not-prose *)) { + .prose-orange :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .prose-amber :where(a):not(:where(.not-prose *)) { + .prose-amber :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .prose-amber :where(a code):not(:where(.not-prose *)) { + .prose-amber :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .prose-yellow :where(a):not(:where(.not-prose *)) { + .prose-yellow :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .prose-yellow :where(a code):not(:where(.not-prose *)) { + .prose-yellow :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .prose-lime :where(a):not(:where(.not-prose *)) { + .prose-lime :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .prose-lime :where(a code):not(:where(.not-prose *)) { + .prose-lime :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .prose-green :where(a):not(:where(.not-prose *)) { + .prose-green :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .prose-green :where(a code):not(:where(.not-prose *)) { + .prose-green :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .prose-emerald :where(a):not(:where(.not-prose *)) { + .prose-emerald :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .prose-emerald :where(a code):not(:where(.not-prose *)) { + .prose-emerald :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .prose-teal :where(a):not(:where(.not-prose *)) { + .prose-teal :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .prose-teal :where(a code):not(:where(.not-prose *)) { + .prose-teal :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .prose-cyan :where(a):not(:where(.not-prose *)) { + .prose-cyan :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .prose-cyan :where(a code):not(:where(.not-prose *)) { + .prose-cyan :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .prose-sky :where(a):not(:where(.not-prose *)) { + .prose-sky :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .prose-sky :where(a code):not(:where(.not-prose *)) { + .prose-sky :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .prose-blue :where(a):not(:where(.not-prose *)) { + .prose-blue :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .prose-blue :where(a code):not(:where(.not-prose *)) { + .prose-blue :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .prose-indigo :where(a):not(:where(.not-prose *)) { + .prose-indigo :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .prose-indigo :where(a code):not(:where(.not-prose *)) { + .prose-indigo :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .prose-violet :where(a):not(:where(.not-prose *)) { + .prose-violet :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .prose-violet :where(a code):not(:where(.not-prose *)) { + .prose-violet :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .prose-purple :where(a):not(:where(.not-prose *)) { + .prose-purple :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .prose-purple :where(a code):not(:where(.not-prose *)) { + .prose-purple :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .prose-fuchsia :where(a):not(:where(.not-prose *)) { + .prose-fuchsia :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .prose-fuchsia :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .prose-pink :where(a):not(:where(.not-prose *)) { + .prose-pink :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .prose-pink :where(a code):not(:where(.not-prose *)) { + .prose-pink :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .prose-rose :where(a):not(:where(.not-prose *)) { + .prose-rose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } - .prose-rose :where(a code):not(:where(.not-prose *)) { + .prose-rose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } @media (min-width: 640px) { @@ -1206,133 +1206,65 @@ it('should generate the default classes for the typography components', async () color: #374151; max-width: 65ch; } - .sm\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { color: #4b5563; font-size: 1.25em; line-height: 1.6; margin-top: 1.2em; margin-bottom: 1.2em; } - .sm\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { + .sm\\\\:prose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; text-decoration: underline; font-weight: 500; } - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - } - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { + .sm\\\\:prose :where(strong):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; } - .sm\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .sm\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"A\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .sm\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .sm\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"a\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .sm\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .sm\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"A\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .sm\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .sm\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"a\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .sm\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .sm\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"I\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .sm\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .sm\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"i\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .sm\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .sm\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"I\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .sm\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .sm\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"i\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .sm\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { - --list-counter-style: decimal; - } - .sm\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol[type=\\"1\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: decimal; } - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + .sm\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; position: absolute; font-weight: 400; color: #6b7280; left: 0; } - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - content: \\"\\"; - position: absolute; - background-color: #d1d5db; - border-radius: 50%; - width: 0.375em; - height: 0.375em; - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + .sm\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\\"; position: absolute; background-color: #d1d5db; @@ -1342,30 +1274,13 @@ it('should generate the default classes for the typography components', async () top: calc(0.875em - 0.1875em); left: 0.25em; } - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { + .sm\\\\:prose :where(hr):not(:where([class~=\\"not-prose\\"] *)) { border-color: #e5e7eb; border-top-width: 1px; margin-top: 3em; margin-bottom: 3em; } - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - font-weight: 500; - font-style: italic; - color: #111827; - border-left-width: 0.25rem; - border-left-color: #e5e7eb; - quotes: \\"\\\\201C\\"\\"\\\\201D\\"\\"\\\\2018\\"\\"\\\\2019\\"; - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; - } - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + .sm\\\\:prose :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 500; font-style: italic; color: #111827; @@ -1376,27 +1291,13 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1.6em; padding-left: 1em; } - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - content: open-quote; - } - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + .sm\\\\:prose :where(blockquote p:first-of-type):not(:where([class~=\\"not-prose\\"] *))::before { content: open-quote; } - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - content: close-quote; - } - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + .sm\\\\:prose :where(blockquote p:last-of-type):not(:where([class~=\\"not-prose\\"] *))::after { content: close-quote; } - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h1):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 800; font-size: 2.25em; @@ -1404,13 +1305,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.8888889em; line-height: 1.1111111; } - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - font-weight: 900; - } - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h1 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 900; } - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h2):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 700; font-size: 1.5em; @@ -1418,29 +1316,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1em; line-height: 1.3333333; } - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; - } - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - font-weight: 800; - } - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h2 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 800; } - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h3):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 1.25em; @@ -1448,87 +1327,40 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.6em; line-height: 1.6; } - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h3 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h4):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.5; } - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h4 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + .sm\\\\:prose :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { color: #6b7280; font-size: 0.875em; line-height: 1.4285714; margin-top: 0.8571429em; } - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { + .sm\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 0.875em; } - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { + .sm\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\`\\"; } - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { + .sm\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::after { content: \\"\`\\"; } - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { - color: #111827; - } - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; } - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { + .sm\\\\:prose :where(pre):not(:where([class~=\\"not-prose\\"] *)) { color: #e5e7eb; background-color: #1f2937; overflow-x: auto; @@ -1542,18 +1374,7 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.8571429em; padding-left: 1.1428571em; } - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; - padding: 0; - font-weight: 400; - color: inherit; - font-size: inherit; - font-family: inherit; - line-height: inherit; - } - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { + .sm\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *)) { background-color: transparent; border-width: 0; border-radius: 0; @@ -1564,28 +1385,13 @@ it('should generate the default classes for the typography components', async () font-family: inherit; line-height: inherit; } - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + .sm\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::before { content: none; } - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + .sm\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::after { content: none; } - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - content: none; - } - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - content: none; - } - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { - width: 100%; - table-layout: auto; - text-align: left; - margin-top: 2em; - margin-bottom: 2em; - font-size: 0.875em; - line-height: 1.7142857; - } - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { + .sm\\\\:prose :where(table):not(:where([class~=\\"not-prose\\"] *)) { width: 100%; table-layout: auto; text-align: left; @@ -1594,52 +1400,26 @@ it('should generate the default classes for the typography components', async () font-size: 0.875em; line-height: 1.7142857; } - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { + .sm\\\\:prose :where(thead):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; border-bottom-width: 1px; border-bottom-color: #d1d5db; } - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { + .sm\\\\:prose :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: bottom; padding-right: 0.5714286em; padding-bottom: 0.5714286em; padding-left: 0.5714286em; } - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + .sm\\\\:prose :where(tbody tr):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 1px; border-bottom-color: #e5e7eb; } - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - border-bottom-width: 0; - } - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(tbody tr:last-child):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 0; } - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + .sm\\\\:prose :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: top; padding-top: 0.5714286em; padding-right: 0.5714286em; @@ -1650,334 +1430,167 @@ it('should generate the default classes for the typography components', async () font-size: 1rem; line-height: 1.75; } - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { + .sm\\\\:prose :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + .sm\\\\:prose :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + .sm\\\\:prose :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + .sm\\\\:prose :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { + .sm\\\\:prose :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + .sm\\\\:prose :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + .sm\\\\:prose :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .sm\\\\:prose-sm { font-size: 0.875rem; line-height: 1.7142857; } - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .sm\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .sm\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; line-height: 1.5555556; margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; padding-left: 1.1111111em; } - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.1428571em; margin-top: 0; margin-bottom: 0.8em; line-height: 1.2; } - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.4285714em; margin-top: 1.6em; margin-bottom: 0.8em; line-height: 1.4; } - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; margin-top: 1.5555556em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.4285714em; margin-bottom: 0.5714286em; line-height: 1.4285714; } - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.3333333; margin-top: 0.6666667em; } - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - font-size: 0.8571429em; - } - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; } - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - border-radius: 0.25rem; - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.6666667; margin-top: 1.6666667em; @@ -1988,350 +1601,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.6666667em; padding-left: 1em; } - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.2857143em; margin-bottom: 0.2857143em; } - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { height: 0.3571429em; width: 0.3571429em; top: calc(0.8571429em - 0.1785714em); left: 0.2142857em; } - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8571429em; margin-bottom: 2.8571429em; } - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.5; } - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.6666667em; padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-sm :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .sm\\\\:prose-lg { font-size: 1.125rem; line-height: 1.7777778; } - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .sm\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - .sm\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2222222em; line-height: 1.4545455; margin-top: 1.0909091em; margin-bottom: 1.0909091em; } - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 1.6666667em; padding-left: 1em; } - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.8333333em; line-height: 1; } - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.6666667em; margin-top: 1.8666667em; margin-bottom: 1.0666667em; line-height: 1.3333333; } - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.3333333em; margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; margin-top: 1em; } - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8666667em; } - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8666667em; - } - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; - } - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.75; margin-top: 2em; @@ -2342,350 +1780,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1em; padding-left: 1.5em; } - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8888889em - 0.1666667em); left: 0.2222222em; } - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3.1111111em; margin-bottom: 3.1111111em; } - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; } - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.75em; padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-lg :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .sm\\\\:prose-xl { font-size: 1.25rem; line-height: 1.8; } - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .sm\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - .sm\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2em; line-height: 1.5; margin-top: 1em; margin-bottom: 1em; } - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6em; margin-bottom: 1.6em; padding-left: 1.0666667em; } - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.8em; margin-top: 0; margin-bottom: 0.8571429em; line-height: 1; } - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.8em; margin-top: 1.5555556em; margin-bottom: 0.8888889em; line-height: 1.1111111; } - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.6em; margin-bottom: 0.6666667em; line-height: 1.3333333; } - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.8em; margin-bottom: 0.6em; line-height: 1.6; } - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; margin-top: 1em; } - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8611111em; } - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8611111em; - } - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.1111111em; - padding-right: 1.3333333em; - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.7777778; margin-top: 2em; @@ -2696,339 +1959,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.1111111em; padding-left: 1.3333333em; } - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6em; margin-bottom: 0.6em; } - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.35em; height: 0.35em; top: calc(0.9em - 0.175em); left: 0.25em; } - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8em; margin-bottom: 2.8em; } - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; } - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8888889em; padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .sm\\\\:prose-2xl { font-size: 1.5rem; line-height: 1.6666667; } - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .sm\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - .sm\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.25em; line-height: 1.4666667; margin-top: 1.0666667em; margin-bottom: 1.0666667em; } - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; padding-left: 1.1111111em; } - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.875em; line-height: 1; } - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2em; margin-top: 1.5em; margin-bottom: 0.8333333em; line-height: 1.0833333; } - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.5555556em; margin-bottom: 0.6666667em; line-height: 1.2222222; } - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.6; margin-top: 1em; } - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - font-size: 0.8333333em; - } - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; } - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.8; margin-top: 2em; @@ -3039,459 +2138,226 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.2em; padding-left: 1.6em; } - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.2em; - padding-right: 1.6em; - padding-bottom: 1.2em; - padding-left: 1.6em; - } - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + .sm\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8333333em - 0.1666667em); left: 0.25em; } - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8333333em; margin-bottom: 0.8333333em; } - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3em; margin-bottom: 3em; } - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - margin-top: 3em; - margin-bottom: 3em; - } - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.4; } - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8em; padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + .sm\\\\:prose-2xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-slate :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-slate :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-zinc :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-zinc :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-neutral :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-neutral :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-stone :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-stone :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-red :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-red :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-orange :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-orange :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-amber :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-amber :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-yellow :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-yellow :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-lime :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-lime :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-green :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-green :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-emerald :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-emerald :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-teal :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-teal :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-cyan :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-cyan :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-sky :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-sky :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-blue :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-blue :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-indigo :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-indigo :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-violet :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-violet :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-purple :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-purple :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-fuchsia :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-fuchsia :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-pink :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-pink :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - color: #e11d48; - } - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - color: #e11d48; - } - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-rose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + .sm\\\\:prose-rose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } } @@ -3500,133 +2366,65 @@ it('should generate the default classes for the typography components', async () color: #374151; max-width: 65ch; } - .md\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .md\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .md\\\\:prose :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { color: #4b5563; font-size: 1.25em; line-height: 1.6; margin-top: 1.2em; margin-bottom: 1.2em; } - .md\\\\:prose :where(a):not(:where(.not-prose *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - .md\\\\:prose :where(a):not(:where(.not-prose *)) { + .md\\\\:prose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; text-decoration: underline; font-weight: 500; } - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - } - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { + .md\\\\:prose :where(strong):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; } - .md\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"A\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .md\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .md\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .md\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"a\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .md\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"A\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .md\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .md\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .md\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"a\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .md\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"I\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .md\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .md\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .md\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"i\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .md\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"I\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .md\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .md\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .md\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"i\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .md\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol[type=\\"1\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: decimal; } - .md\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { - --list-counter-style: decimal; - } - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + .md\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; position: absolute; font-weight: 400; color: #6b7280; left: 0; } - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + .md\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - content: \\"\\"; - position: absolute; - background-color: #d1d5db; - border-radius: 50%; - width: 0.375em; - height: 0.375em; - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + .md\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\\"; position: absolute; background-color: #d1d5db; @@ -3636,30 +2434,13 @@ it('should generate the default classes for the typography components', async () top: calc(0.875em - 0.1875em); left: 0.25em; } - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { + .md\\\\:prose :where(hr):not(:where([class~=\\"not-prose\\"] *)) { border-color: #e5e7eb; border-top-width: 1px; margin-top: 3em; margin-bottom: 3em; } - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - font-weight: 500; - font-style: italic; - color: #111827; - border-left-width: 0.25rem; - border-left-color: #e5e7eb; - quotes: \\"\\\\201C\\"\\"\\\\201D\\"\\"\\\\2018\\"\\"\\\\2019\\"; - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; - } - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + .md\\\\:prose :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 500; font-style: italic; color: #111827; @@ -3670,27 +2451,13 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1.6em; padding-left: 1em; } - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - content: open-quote; - } - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + .md\\\\:prose :where(blockquote p:first-of-type):not(:where([class~=\\"not-prose\\"] *))::before { content: open-quote; } - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + .md\\\\:prose :where(blockquote p:last-of-type):not(:where([class~=\\"not-prose\\"] *))::after { content: close-quote; } - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - content: close-quote; - } - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { + .md\\\\:prose :where(h1):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 800; font-size: 2.25em; @@ -3698,21 +2465,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.8888889em; line-height: 1.1111111; } - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - font-weight: 900; - } - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + .md\\\\:prose :where(h1 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 900; } - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; - } - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { + .md\\\\:prose :where(h2):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 700; font-size: 1.5em; @@ -3720,21 +2476,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1em; line-height: 1.3333333; } - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - font-weight: 800; - } - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + .md\\\\:prose :where(h2 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 800; } - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { + .md\\\\:prose :where(h3):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 1.25em; @@ -3742,87 +2487,40 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.6em; line-height: 1.6; } - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + .md\\\\:prose :where(h3 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { + .md\\\\:prose :where(h4):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.5; } - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + .md\\\\:prose :where(h4 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + .md\\\\:prose :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { color: #6b7280; font-size: 0.875em; line-height: 1.4285714; margin-top: 0.8571429em; } - .md\\\\:prose :where(code):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - .md\\\\:prose :where(code):not(:where(.not-prose *)) { + .md\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 0.875em; } - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { + .md\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\`\\"; } - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { + .md\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::after { content: \\"\`\\"; } - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { - content: \\"\`\\"; - } - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { - color: #111827; - } - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; } - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { + .md\\\\:prose :where(pre):not(:where([class~=\\"not-prose\\"] *)) { color: #e5e7eb; background-color: #1f2937; overflow-x: auto; @@ -3836,18 +2534,7 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.8571429em; padding-left: 1.1428571em; } - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; - padding: 0; - font-weight: 400; - color: inherit; - font-size: inherit; - font-family: inherit; - line-height: inherit; - } - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { + .md\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *)) { background-color: transparent; border-width: 0; border-radius: 0; @@ -3858,28 +2545,13 @@ it('should generate the default classes for the typography components', async () font-family: inherit; line-height: inherit; } - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - content: none; - } - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - content: none; - } - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + .md\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::before { content: none; } - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + .md\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::after { content: none; } - .md\\\\:prose :where(table):not(:where(.not-prose *)) { - width: 100%; - table-layout: auto; - text-align: left; - margin-top: 2em; - margin-bottom: 2em; - font-size: 0.875em; - line-height: 1.7142857; - } - .md\\\\:prose :where(table):not(:where(.not-prose *)) { + .md\\\\:prose :where(table):not(:where([class~=\\"not-prose\\"] *)) { width: 100%; table-layout: auto; text-align: left; @@ -3888,52 +2560,26 @@ it('should generate the default classes for the typography components', async () font-size: 0.875em; line-height: 1.7142857; } - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { + .md\\\\:prose :where(thead):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; border-bottom-width: 1px; border-bottom-color: #d1d5db; } - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { + .md\\\\:prose :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: bottom; padding-right: 0.5714286em; padding-bottom: 0.5714286em; padding-left: 0.5714286em; } - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + .md\\\\:prose :where(tbody tr):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 1px; border-bottom-color: #e5e7eb; } - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(tbody tr:last-child):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 0; } - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - border-bottom-width: 0; - } - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + .md\\\\:prose :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: top; padding-top: 0.5714286em; padding-right: 0.5714286em; @@ -3944,334 +2590,167 @@ it('should generate the default classes for the typography components', async () font-size: 1rem; line-height: 1.75; } - .md\\\\:prose :where(p):not(:where(.not-prose *)) { + .md\\\\:prose :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .md\\\\:prose :where(p):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose :where(video):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose :where(video):not(:where(.not-prose *)) { + .md\\\\:prose :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { + .md\\\\:prose :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { + .md\\\\:prose :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + .md\\\\:prose :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + .md\\\\:prose :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + .md\\\\:prose :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + .md\\\\:prose :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + .md\\\\:prose :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .md\\\\:prose :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .md\\\\:prose :where(li):not(:where(.not-prose *)) { + .md\\\\:prose :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + .md\\\\:prose :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { + .md\\\\:prose :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .md\\\\:prose :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + .md\\\\:prose :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .md\\\\:prose-sm { font-size: 0.875rem; line-height: 1.7142857; } - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .md\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .md\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; line-height: 1.5555556; margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; padding-left: 1.1111111em; } - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.1428571em; margin-top: 0; margin-bottom: 0.8em; line-height: 1.2; } - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.4285714em; margin-top: 1.6em; margin-bottom: 0.8em; line-height: 1.4; } - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; margin-top: 1.5555556em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.4285714em; margin-bottom: 0.5714286em; line-height: 1.4285714; } - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.3333333; margin-top: 0.6666667em; } - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - font-size: 0.8571429em; - } - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; } - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - border-radius: 0.25rem; - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.6666667; margin-top: 1.6666667em; @@ -4282,350 +2761,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.6666667em; padding-left: 1em; } - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.2857143em; margin-bottom: 0.2857143em; } - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + .md\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + .md\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { height: 0.3571429em; width: 0.3571429em; top: calc(0.8571429em - 0.1785714em); left: 0.2142857em; } - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8571429em; margin-bottom: 2.8571429em; } - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.5; } - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.6666667em; padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + .md\\\\:prose-sm :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .md\\\\:prose-lg { font-size: 1.125rem; line-height: 1.7777778; } - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .md\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - .md\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2222222em; line-height: 1.4545455; margin-top: 1.0909091em; margin-bottom: 1.0909091em; } - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 1.6666667em; padding-left: 1em; } - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.8333333em; line-height: 1; } - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.6666667em; margin-top: 1.8666667em; margin-bottom: 1.0666667em; line-height: 1.3333333; } - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.3333333em; margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; margin-top: 1em; } - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8666667em; - } - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8666667em; } - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; - } - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.75; margin-top: 2em; @@ -4636,350 +2940,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1em; padding-left: 1.5em; } - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + .md\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + .md\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8888889em - 0.1666667em); left: 0.2222222em; } - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3.1111111em; margin-bottom: 3.1111111em; } - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; } - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.75em; padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + .md\\\\:prose-lg :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .md\\\\:prose-xl { font-size: 1.25rem; line-height: 1.8; } - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .md\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - .md\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2em; line-height: 1.5; margin-top: 1em; margin-bottom: 1em; } - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6em; margin-bottom: 1.6em; padding-left: 1.0666667em; } - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.8em; margin-top: 0; margin-bottom: 0.8571429em; line-height: 1; } - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.8em; margin-top: 1.5555556em; margin-bottom: 0.8888889em; line-height: 1.1111111; } - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.6em; margin-bottom: 0.6666667em; line-height: 1.3333333; } - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.8em; margin-bottom: 0.6em; line-height: 1.6; } - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; margin-top: 1em; } - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8611111em; - } - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8611111em; } - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.1111111em; - padding-right: 1.3333333em; - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; } - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.7777778; margin-top: 2em; @@ -4990,350 +3119,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.1111111em; padding-left: 1.3333333em; } - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6em; margin-bottom: 0.6em; } - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + .md\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + .md\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.35em; height: 0.35em; top: calc(0.9em - 0.175em); left: 0.25em; } - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8em; margin-bottom: 2.8em; } - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; } - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8888889em; padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + .md\\\\:prose-xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .md\\\\:prose-2xl { font-size: 1.5rem; line-height: 1.6666667; } - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .md\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - .md\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.25em; line-height: 1.4666667; margin-top: 1.0666667em; margin-bottom: 1.0666667em; } - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; padding-left: 1.1111111em; } - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.875em; line-height: 1; } - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2em; margin-top: 1.5em; margin-bottom: 0.8333333em; line-height: 1.0833333; } - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.5555556em; margin-bottom: 0.6666667em; line-height: 1.2222222; } - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.6; margin-top: 1em; } - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - font-size: 0.8333333em; - } - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; } - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.2em; - padding-right: 1.6em; - padding-bottom: 1.2em; - padding-left: 1.6em; - } - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.8; margin-top: 2em; @@ -5344,448 +3298,226 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.2em; padding-left: 1.6em; } - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + .md\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + .md\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8333333em - 0.1666667em); left: 0.25em; } - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8333333em; margin-bottom: 0.8333333em; } - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - margin-top: 3em; - margin-bottom: 3em; - } - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3em; margin-bottom: 3em; } - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.4; } - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8em; padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + .md\\\\:prose-2xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-slate :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-slate :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - color: #475569; - } - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-zinc :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-zinc :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - color: #52525b; - } - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-neutral :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-neutral :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - color: #525252; - } - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-stone :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-stone :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - color: #57534e; - } - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-red :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-red :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - color: #dc2626; - } - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-orange :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-orange :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - color: #ea580c; - } - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-amber :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-amber :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - color: #d97706; - } - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-yellow :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-yellow :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - color: #ca8a04; - } - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-lime :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-lime :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - color: #65a30d; - } - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-green :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-green :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - color: #16a34a; - } - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-emerald :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-emerald :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - color: #059669; - } - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-teal :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-teal :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - color: #0d9488; - } - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-cyan :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-cyan :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - color: #0891b2; - } - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-sky :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-sky :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - color: #0284c7; - } - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-blue :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-blue :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - color: #2563eb; - } - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-indigo :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-indigo :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - color: #4f46e5; - } - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-violet :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-violet :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - color: #7c3aed; - } - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-purple :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-purple :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - color: #9333ea; - } - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-fuchsia :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-fuchsia :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - color: #c026d3; - } - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-pink :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-pink :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - color: #db2777; - } - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - color: #e11d48; - } - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + .md\\\\:prose-rose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - color: #e11d48; - } - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + .md\\\\:prose-rose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } } @@ -5794,133 +3526,65 @@ it('should generate the default classes for the typography components', async () color: #374151; max-width: 65ch; } - .lg\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .lg\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { color: #4b5563; font-size: 1.25em; line-height: 1.6; margin-top: 1.2em; margin-bottom: 1.2em; } - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { + .lg\\\\:prose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; text-decoration: underline; font-weight: 500; } - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { + .lg\\\\:prose :where(strong):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; } - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - } - .lg\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .lg\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"A\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .lg\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .lg\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"a\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .lg\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .lg\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"A\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .lg\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .lg\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"a\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .lg\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .lg\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"I\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .lg\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .lg\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"i\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .lg\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .lg\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"I\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .lg\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .lg\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"i\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .lg\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { - --list-counter-style: decimal; - } - .lg\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol[type=\\"1\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: decimal; } - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + .lg\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; position: absolute; font-weight: 400; color: #6b7280; left: 0; } - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - content: \\"\\"; - position: absolute; - background-color: #d1d5db; - border-radius: 50%; - width: 0.375em; - height: 0.375em; - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + .lg\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\\"; position: absolute; background-color: #d1d5db; @@ -5930,30 +3594,13 @@ it('should generate the default classes for the typography components', async () top: calc(0.875em - 0.1875em); left: 0.25em; } - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { + .lg\\\\:prose :where(hr):not(:where([class~=\\"not-prose\\"] *)) { border-color: #e5e7eb; border-top-width: 1px; margin-top: 3em; margin-bottom: 3em; } - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - font-weight: 500; - font-style: italic; - color: #111827; - border-left-width: 0.25rem; - border-left-color: #e5e7eb; - quotes: \\"\\\\201C\\"\\"\\\\201D\\"\\"\\\\2018\\"\\"\\\\2019\\"; - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; - } - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + .lg\\\\:prose :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 500; font-style: italic; color: #111827; @@ -5964,27 +3611,13 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1.6em; padding-left: 1em; } - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - content: open-quote; - } - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + .lg\\\\:prose :where(blockquote p:first-of-type):not(:where([class~=\\"not-prose\\"] *))::before { content: open-quote; } - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - content: close-quote; - } - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + .lg\\\\:prose :where(blockquote p:last-of-type):not(:where([class~=\\"not-prose\\"] *))::after { content: close-quote; } - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h1):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 800; font-size: 2.25em; @@ -5992,21 +3625,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.8888889em; line-height: 1.1111111; } - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h1 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 900; } - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - font-weight: 900; - } - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; - } - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h2):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 700; font-size: 1.5em; @@ -6014,21 +3636,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1em; line-height: 1.3333333; } - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - font-weight: 800; - } - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h2 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 800; } - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h3):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 1.25em; @@ -6036,87 +3647,40 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.6em; line-height: 1.6; } - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h3 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h4):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.5; } - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h4 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + .lg\\\\:prose :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { color: #6b7280; font-size: 0.875em; line-height: 1.4285714; margin-top: 0.8571429em; } - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { + .lg\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 0.875em; } - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { + .lg\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\`\\"; } - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { + .lg\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::after { content: \\"\`\\"; } - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { - color: #111827; - } - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; } - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { + .lg\\\\:prose :where(pre):not(:where([class~=\\"not-prose\\"] *)) { color: #e5e7eb; background-color: #1f2937; overflow-x: auto; @@ -6130,18 +3694,7 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.8571429em; padding-left: 1.1428571em; } - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; - padding: 0; - font-weight: 400; - color: inherit; - font-size: inherit; - font-family: inherit; - line-height: inherit; - } - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { + .lg\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *)) { background-color: transparent; border-width: 0; border-radius: 0; @@ -6152,28 +3705,13 @@ it('should generate the default classes for the typography components', async () font-family: inherit; line-height: inherit; } - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - content: none; - } - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + .lg\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::before { content: none; } - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + .lg\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::after { content: none; } - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - content: none; - } - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { - width: 100%; - table-layout: auto; - text-align: left; - margin-top: 2em; - margin-bottom: 2em; - font-size: 0.875em; - line-height: 1.7142857; - } - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { + .lg\\\\:prose :where(table):not(:where([class~=\\"not-prose\\"] *)) { width: 100%; table-layout: auto; text-align: left; @@ -6182,52 +3720,26 @@ it('should generate the default classes for the typography components', async () font-size: 0.875em; line-height: 1.7142857; } - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { + .lg\\\\:prose :where(thead):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; border-bottom-width: 1px; border-bottom-color: #d1d5db; } - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { + .lg\\\\:prose :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: bottom; padding-right: 0.5714286em; padding-bottom: 0.5714286em; padding-left: 0.5714286em; } - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + .lg\\\\:prose :where(tbody tr):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 1px; border-bottom-color: #e5e7eb; } - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - border-bottom-width: 0; - } - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(tbody tr:last-child):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 0; } - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + .lg\\\\:prose :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: top; padding-top: 0.5714286em; padding-right: 0.5714286em; @@ -6238,334 +3750,167 @@ it('should generate the default classes for the typography components', async () font-size: 1rem; line-height: 1.75; } - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { + .lg\\\\:prose :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { + .lg\\\\:prose :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + .lg\\\\:prose :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { + .lg\\\\:prose :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + .lg\\\\:prose :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + .lg\\\\:prose :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .lg\\\\:prose-sm { font-size: 0.875rem; line-height: 1.7142857; } - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .lg\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; line-height: 1.5555556; margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .lg\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; padding-left: 1.1111111em; } - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.1428571em; margin-top: 0; margin-bottom: 0.8em; line-height: 1.2; } - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.4285714em; margin-top: 1.6em; margin-bottom: 0.8em; line-height: 1.4; } - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; margin-top: 1.5555556em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.4285714em; margin-bottom: 0.5714286em; line-height: 1.4285714; } - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.3333333; margin-top: 0.6666667em; } - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - font-size: 0.8571429em; - } - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - font-size: 0.8571429em; - } - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.9em; } - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - border-radius: 0.25rem; - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.6666667; margin-top: 1.6666667em; @@ -6576,350 +3921,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.6666667em; padding-left: 1em; } - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.2857143em; margin-bottom: 0.2857143em; } - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { height: 0.3571429em; width: 0.3571429em; top: calc(0.8571429em - 0.1785714em); left: 0.2142857em; } - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8571429em; margin-bottom: 2.8571429em; } - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; + .lg\\\\:prose-sm :where(table):not(:where([class~=\\"not-prose\\"] *)) { + font-size: 0.8571429em; + line-height: 1.5; } - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; + .lg\\\\:prose-sm :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { + padding-right: 1em; + padding-bottom: 0.6666667em; + padding-left: 1em; } - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.6666667em; padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-sm :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .lg\\\\:prose-lg { font-size: 1.125rem; line-height: 1.7777778; } - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .lg\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - .lg\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2222222em; line-height: 1.4545455; margin-top: 1.0909091em; margin-bottom: 1.0909091em; } - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 1.6666667em; padding-left: 1em; } - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.8333333em; line-height: 1; } - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.6666667em; margin-top: 1.8666667em; margin-bottom: 1.0666667em; line-height: 1.3333333; } - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.3333333em; margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; margin-top: 1em; } - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8666667em; } - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8666667em; - } - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; - } - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.75; margin-top: 2em; @@ -6930,350 +4100,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1em; padding-left: 1.5em; } - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8888889em - 0.1666667em); left: 0.2222222em; } - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3.1111111em; margin-bottom: 3.1111111em; } - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; } - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.75em; padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-lg :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .lg\\\\:prose-xl { font-size: 1.25rem; line-height: 1.8; } - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .lg\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - .lg\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2em; line-height: 1.5; margin-top: 1em; margin-bottom: 1em; } - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6em; margin-bottom: 1.6em; padding-left: 1.0666667em; } - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.8em; margin-top: 0; margin-bottom: 0.8571429em; line-height: 1; } - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.8em; margin-top: 1.5555556em; margin-bottom: 0.8888889em; line-height: 1.1111111; } - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.6em; margin-bottom: 0.6666667em; line-height: 1.3333333; } - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.8em; margin-bottom: 0.6em; line-height: 1.6; } - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; margin-top: 1em; } - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8611111em; } - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8611111em; - } - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.1111111em; - padding-right: 1.3333333em; - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.7777778; margin-top: 2em; @@ -7284,339 +4279,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.1111111em; padding-left: 1.3333333em; } - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6em; margin-bottom: 0.6em; } - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.35em; height: 0.35em; top: calc(0.9em - 0.175em); left: 0.25em; } - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8em; margin-bottom: 2.8em; } - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; } - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8888889em; padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .lg\\\\:prose-2xl { font-size: 1.5rem; line-height: 1.6666667; } - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .lg\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - .lg\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.25em; line-height: 1.4666667; margin-top: 1.0666667em; margin-bottom: 1.0666667em; } - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; padding-left: 1.1111111em; } - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.875em; line-height: 1; } - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2em; margin-top: 1.5em; margin-bottom: 0.8333333em; line-height: 1.0833333; } - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.5555556em; margin-bottom: 0.6666667em; line-height: 1.2222222; } - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.6; margin-top: 1em; } - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - font-size: 0.8333333em; - } - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; } - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.8; margin-top: 2em; @@ -7627,459 +4458,226 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.2em; padding-left: 1.6em; } - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.2em; - padding-right: 1.6em; - padding-bottom: 1.2em; - padding-left: 1.6em; - } - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + .lg\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8333333em - 0.1666667em); left: 0.25em; } - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8333333em; margin-bottom: 0.8333333em; } - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3em; margin-bottom: 3em; } - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - margin-top: 3em; - margin-bottom: 3em; - } - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.4; } - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8em; padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + .lg\\\\:prose-2xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-slate :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-slate :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-zinc :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-zinc :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-neutral :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-neutral :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-stone :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-stone :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-red :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-red :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-orange :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-orange :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-amber :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-amber :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-yellow :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-yellow :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-lime :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-lime :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-green :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-green :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-emerald :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-emerald :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-teal :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-teal :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-cyan :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-cyan :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-sky :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-sky :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-blue :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-blue :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-indigo :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-indigo :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-violet :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-violet :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-purple :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-purple :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-fuchsia :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-fuchsia :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-pink :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-pink :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + .lg\\\\:prose-rose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - color: #e11d48; - } - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - color: #e11d48; - } - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + .lg\\\\:prose-rose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } } @@ -8088,133 +4686,65 @@ it('should generate the default classes for the typography components', async () color: #374151; max-width: 65ch; } - .xl\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .xl\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { color: #4b5563; font-size: 1.25em; line-height: 1.6; margin-top: 1.2em; margin-bottom: 1.2em; } - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; text-decoration: underline; font-weight: 500; } - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - } - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { + .xl\\\\:prose :where(strong):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; } - .xl\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"A\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .xl\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .xl\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .xl\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"a\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .xl\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"A\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .xl\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .xl\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .xl\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"a\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .xl\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"I\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .xl\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .xl\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .xl\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"i\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .xl\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"I\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .xl\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .xl\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .xl\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"i\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .xl\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol[type=\\"1\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: decimal; } - .xl\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { - --list-counter-style: decimal; - } - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + .xl\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; position: absolute; font-weight: 400; color: #6b7280; left: 0; } - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - content: \\"\\"; - position: absolute; - background-color: #d1d5db; - border-radius: 50%; - width: 0.375em; - height: 0.375em; - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + .xl\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\\"; position: absolute; background-color: #d1d5db; @@ -8224,30 +4754,13 @@ it('should generate the default classes for the typography components', async () top: calc(0.875em - 0.1875em); left: 0.25em; } - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + .xl\\\\:prose :where(hr):not(:where([class~=\\"not-prose\\"] *)) { border-color: #e5e7eb; border-top-width: 1px; margin-top: 3em; margin-bottom: 3em; } - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - font-weight: 500; - font-style: italic; - color: #111827; - border-left-width: 0.25rem; - border-left-color: #e5e7eb; - quotes: \\"\\\\201C\\"\\"\\\\201D\\"\\"\\\\2018\\"\\"\\\\2019\\"; - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; - } - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + .xl\\\\:prose :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 500; font-style: italic; color: #111827; @@ -8258,27 +4771,13 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1.6em; padding-left: 1em; } - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - content: open-quote; - } - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + .xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~=\\"not-prose\\"] *))::before { content: open-quote; } - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + .xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~=\\"not-prose\\"] *))::after { content: close-quote; } - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - content: close-quote; - } - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h1):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 800; font-size: 2.25em; @@ -8286,21 +4785,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.8888889em; line-height: 1.1111111; } - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - font-weight: 900; - } - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h1 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 900; } - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; - } - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h2):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 700; font-size: 1.5em; @@ -8308,21 +4796,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1em; line-height: 1.3333333; } - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - font-weight: 800; - } - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h2 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 800; } - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h3):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 1.25em; @@ -8330,87 +4807,40 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.6em; line-height: 1.6; } - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h3 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h4):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.5; } - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h4 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + .xl\\\\:prose :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { color: #6b7280; font-size: 0.875em; line-height: 1.4285714; margin-top: 0.8571429em; } - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { + .xl\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 0.875em; } - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { + .xl\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\`\\"; } - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + .xl\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::after { content: \\"\`\\"; } - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - content: \\"\`\\"; - } - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - color: #111827; - } - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; } - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + .xl\\\\:prose :where(pre):not(:where([class~=\\"not-prose\\"] *)) { color: #e5e7eb; background-color: #1f2937; overflow-x: auto; @@ -8424,18 +4854,7 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.8571429em; padding-left: 1.1428571em; } - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; - padding: 0; - font-weight: 400; - color: inherit; - font-size: inherit; - font-family: inherit; - line-height: inherit; - } - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + .xl\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *)) { background-color: transparent; border-width: 0; border-radius: 0; @@ -8446,28 +4865,13 @@ it('should generate the default classes for the typography components', async () font-family: inherit; line-height: inherit; } - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - content: none; - } - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - content: none; - } - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + .xl\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::before { content: none; } - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + .xl\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::after { content: none; } - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { - width: 100%; - table-layout: auto; - text-align: left; - margin-top: 2em; - margin-bottom: 2em; - font-size: 0.875em; - line-height: 1.7142857; - } - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { + .xl\\\\:prose :where(table):not(:where([class~=\\"not-prose\\"] *)) { width: 100%; table-layout: auto; text-align: left; @@ -8476,52 +4880,26 @@ it('should generate the default classes for the typography components', async () font-size: 0.875em; line-height: 1.7142857; } - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + .xl\\\\:prose :where(thead):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; border-bottom-width: 1px; border-bottom-color: #d1d5db; } - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + .xl\\\\:prose :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: bottom; padding-right: 0.5714286em; padding-bottom: 0.5714286em; padding-left: 0.5714286em; } - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + .xl\\\\:prose :where(tbody tr):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 1px; border-bottom-color: #e5e7eb; } - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(tbody tr:last-child):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 0; } - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - border-bottom-width: 0; - } - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + .xl\\\\:prose :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: top; padding-top: 0.5714286em; padding-right: 0.5714286em; @@ -8532,334 +4910,167 @@ it('should generate the default classes for the typography components', async () font-size: 1rem; line-height: 1.75; } - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { + .xl\\\\:prose :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { + .xl\\\\:prose :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + .xl\\\\:prose :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + .xl\\\\:prose :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + .xl\\\\:prose :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { + .xl\\\\:prose :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + .xl\\\\:prose :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { + .xl\\\\:prose :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .xl\\\\:prose :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + .xl\\\\:prose :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .xl\\\\:prose-sm { font-size: 0.875rem; line-height: 1.7142857; } - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .xl\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .xl\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; line-height: 1.5555556; margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; padding-left: 1.1111111em; } - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.1428571em; margin-top: 0; margin-bottom: 0.8em; line-height: 1.2; } - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.4285714em; margin-top: 1.6em; margin-bottom: 0.8em; line-height: 1.4; } - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; margin-top: 1.5555556em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.4285714em; margin-bottom: 0.5714286em; line-height: 1.4285714; } - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.3333333; margin-top: 0.6666667em; } - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - font-size: 0.8571429em; - } - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; } - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - border-radius: 0.25rem; - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.6666667; margin-top: 1.6666667em; @@ -8870,350 +5081,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.6666667em; padding-left: 1em; } - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.2857143em; margin-bottom: 0.2857143em; } - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { height: 0.3571429em; width: 0.3571429em; top: calc(0.8571429em - 0.1785714em); left: 0.2142857em; } - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8571429em; margin-bottom: 2.8571429em; } - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.5; } - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.6666667em; padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-sm :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .xl\\\\:prose-lg { font-size: 1.125rem; line-height: 1.7777778; } - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .xl\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - .xl\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2222222em; line-height: 1.4545455; margin-top: 1.0909091em; margin-bottom: 1.0909091em; } - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 1.6666667em; padding-left: 1em; } - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.8333333em; line-height: 1; } - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.6666667em; margin-top: 1.8666667em; margin-bottom: 1.0666667em; line-height: 1.3333333; } - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.3333333em; margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; margin-top: 1em; } - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8666667em; - } - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8666667em; } - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; - } - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.75; margin-top: 2em; @@ -9224,350 +5260,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1em; padding-left: 1.5em; } - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8888889em - 0.1666667em); left: 0.2222222em; } - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3.1111111em; margin-bottom: 3.1111111em; } - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; } - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.75em; padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-lg :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .xl\\\\:prose-xl { font-size: 1.25rem; line-height: 1.8; } - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .xl\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2em; line-height: 1.5; margin-top: 1em; margin-bottom: 1em; } - .xl\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6em; margin-bottom: 1.6em; padding-left: 1.0666667em; } - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.8em; margin-top: 0; margin-bottom: 0.8571429em; line-height: 1; } - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.8em; margin-top: 1.5555556em; margin-bottom: 0.8888889em; line-height: 1.1111111; } - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.6em; margin-bottom: 0.6666667em; line-height: 1.3333333; } - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.8em; margin-bottom: 0.6em; line-height: 1.6; } - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; margin-top: 1em; } - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8611111em; - } - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8611111em; } - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.1111111em; - padding-right: 1.3333333em; - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; } - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.7777778; margin-top: 2em; @@ -9578,350 +5439,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.1111111em; padding-left: 1.3333333em; } - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6em; margin-bottom: 0.6em; } - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.35em; height: 0.35em; top: calc(0.9em - 0.175em); left: 0.25em; } - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8em; margin-bottom: 2.8em; } - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; } - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8888889em; padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .xl\\\\:prose-2xl { font-size: 1.5rem; line-height: 1.6666667; } - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .xl\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - .xl\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.25em; line-height: 1.4666667; margin-top: 1.0666667em; margin-bottom: 1.0666667em; } - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; padding-left: 1.1111111em; } - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.875em; line-height: 1; } - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2em; margin-top: 1.5em; margin-bottom: 0.8333333em; line-height: 1.0833333; } - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.5555556em; margin-bottom: 0.6666667em; line-height: 1.2222222; } - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.6; margin-top: 1em; } - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - font-size: 0.8333333em; - } - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; } - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.2em; - padding-right: 1.6em; - padding-bottom: 1.2em; - padding-left: 1.6em; - } - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.8; margin-top: 2em; @@ -9932,448 +5618,226 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.2em; padding-left: 1.6em; } - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + .xl\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8333333em - 0.1666667em); left: 0.25em; } - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8333333em; margin-bottom: 0.8333333em; } - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - margin-top: 3em; - margin-bottom: 3em; - } - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3em; margin-bottom: 3em; } - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.4; } - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8em; padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + .xl\\\\:prose-2xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-slate :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-slate :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - color: #475569; - } - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-zinc :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-zinc :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - color: #52525b; - } - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-neutral :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-neutral :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - color: #525252; - } - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-stone :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-stone :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - color: #57534e; - } - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-red :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-red :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - color: #dc2626; - } - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-orange :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-orange :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - color: #ea580c; - } - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-amber :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-amber :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - color: #d97706; - } - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-yellow :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-yellow :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - color: #ca8a04; - } - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-lime :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-lime :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - color: #65a30d; - } - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-green :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-green :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - color: #16a34a; - } - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-emerald :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-emerald :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - color: #059669; - } - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-teal :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-teal :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - color: #0d9488; - } - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-cyan :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-cyan :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - color: #0891b2; - } - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-sky :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-sky :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - color: #0284c7; - } - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-blue :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-blue :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - color: #2563eb; - } - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-indigo :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-indigo :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - color: #4f46e5; - } - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-violet :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-violet :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - color: #7c3aed; - } - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-purple :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-purple :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - color: #9333ea; - } - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-fuchsia :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-fuchsia :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - color: #c026d3; - } - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-pink :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-pink :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - color: #db2777; - } - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - color: #e11d48; - } - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + .xl\\\\:prose-rose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - color: #e11d48; - } - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + .xl\\\\:prose-rose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } } @@ -10382,133 +5846,65 @@ it('should generate the default classes for the typography components', async () color: #374151; max-width: 65ch; } - .\\\\32xl\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .\\\\32xl\\\\:prose :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { color: #4b5563; font-size: 1.25em; line-height: 1.6; margin-top: 1.2em; margin-bottom: 1.2em; } - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; text-decoration: underline; font-weight: 500; } - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(strong):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; } - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"A\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"A\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .\\\\32xl\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"a\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"a\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .\\\\32xl\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-alpha; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"A\\" s]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"A\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-alpha; } - .\\\\32xl\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-alpha; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"a\\" s]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"a\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-alpha; } - .\\\\32xl\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"I\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"I\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .\\\\32xl\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"i\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"i\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .\\\\32xl\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { - --list-counter-style: upper-roman; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"I\\" s]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"I\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: upper-roman; } - .\\\\32xl\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { - --list-counter-style: lower-roman; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"i\\" s]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"i\\" s]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: lower-roman; } - .\\\\32xl\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { - --list-counter-style: decimal; - } - .\\\\32xl\\\\:prose :where(ol[type=\\"1\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol[type=\\"1\\"]):not(:where([class~=\\"not-prose\\"] *)) { --list-counter-style: decimal; } - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; position: absolute; font-weight: 400; color: #6b7280; left: 0; } - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) \\".\\"; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - position: relative; - padding-left: 1.75em; - } - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { position: relative; padding-left: 1.75em; } - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - content: \\"\\"; - position: absolute; - background-color: #d1d5db; - border-radius: 50%; - width: 0.375em; - height: 0.375em; - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\\"; position: absolute; background-color: #d1d5db; @@ -10518,30 +5914,13 @@ it('should generate the default classes for the typography components', async () top: calc(0.875em - 0.1875em); left: 0.25em; } - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(hr):not(:where([class~=\\"not-prose\\"] *)) { border-color: #e5e7eb; border-top-width: 1px; margin-top: 3em; margin-bottom: 3em; } - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - font-weight: 500; - font-style: italic; - color: #111827; - border-left-width: 0.25rem; - border-left-color: #e5e7eb; - quotes: \\"\\\\201C\\"\\"\\\\201D\\"\\"\\\\2018\\"\\"\\\\2019\\"; - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; - } - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 500; font-style: italic; color: #111827; @@ -10552,27 +5931,13 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1.6em; padding-left: 1em; } - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - content: open-quote; - } - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~=\\"not-prose\\"] *))::before { content: open-quote; } - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - content: close-quote; - } - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~=\\"not-prose\\"] *))::after { content: close-quote; } - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h1):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 800; font-size: 2.25em; @@ -10580,21 +5945,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.8888889em; line-height: 1.1111111; } - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h1 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 900; } - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - font-weight: 900; - } - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; - } - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h2):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 700; font-size: 1.5em; @@ -10602,21 +5956,10 @@ it('should generate the default classes for the typography components', async () margin-bottom: 1em; line-height: 1.3333333; } - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - font-weight: 800; - } - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h2 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 800; } - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h3):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 1.25em; @@ -10624,87 +5967,40 @@ it('should generate the default classes for the typography components', async () margin-bottom: 0.6em; line-height: 1.6; } - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h3 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h4):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.5; } - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - font-weight: 700; - } - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h4 strong):not(:where([class~=\\"not-prose\\"] *)) { font-weight: 700; } - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { color: #6b7280; font-size: 0.875em; line-height: 1.4285714; margin-top: 0.8571429em; } - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; font-size: 0.875em; } - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - content: \\"\`\\"; - } - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + .\\\\32xl\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::before { content: \\"\`\\"; } - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + .\\\\32xl\\\\:prose :where(code):not(:where([class~=\\"not-prose\\"] *))::after { content: \\"\`\\"; } - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - color: #111827; - } - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; } - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(pre):not(:where([class~=\\"not-prose\\"] *)) { color: #e5e7eb; background-color: #1f2937; overflow-x: auto; @@ -10718,18 +6014,7 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.8571429em; padding-left: 1.1428571em; } - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; - padding: 0; - font-weight: 400; - color: inherit; - font-size: inherit; - font-family: inherit; - line-height: inherit; - } - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *)) { background-color: transparent; border-width: 0; border-radius: 0; @@ -10740,28 +6025,13 @@ it('should generate the default classes for the typography components', async () font-family: inherit; line-height: inherit; } - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - content: none; - } - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::before { content: none; } - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + .\\\\32xl\\\\:prose :where(pre code):not(:where([class~=\\"not-prose\\"] *))::after { content: none; } - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - content: none; - } - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { - width: 100%; - table-layout: auto; - text-align: left; - margin-top: 2em; - margin-bottom: 2em; - font-size: 0.875em; - line-height: 1.7142857; - } - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(table):not(:where([class~=\\"not-prose\\"] *)) { width: 100%; table-layout: auto; text-align: left; @@ -10770,52 +6040,26 @@ it('should generate the default classes for the typography components', async () font-size: 0.875em; line-height: 1.7142857; } - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(thead):not(:where([class~=\\"not-prose\\"] *)) { color: #111827; font-weight: 600; border-bottom-width: 1px; border-bottom-color: #d1d5db; } - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: bottom; padding-right: 0.5714286em; padding-bottom: 0.5714286em; padding-left: 0.5714286em; } - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(tbody tr):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 1px; border-bottom-color: #e5e7eb; } - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where([class~=\\"not-prose\\"] *)) { border-bottom-width: 0; } - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - border-bottom-width: 0; - } - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { vertical-align: top; padding-top: 0.5714286em; padding-right: 0.5714286em; @@ -10826,334 +6070,167 @@ it('should generate the default classes for the typography components', async () font-size: 1rem; line-height: 1.75; } - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; margin-bottom: 1.25em; } - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.25em; - } - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.25em; } - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.25em; } - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.25em; - } - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.75em; margin-bottom: 0.75em; } - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .\\\\32xl\\\\:prose-sm { font-size: 0.875rem; line-height: 1.7142857; } - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .\\\\32xl\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; line-height: 1.5555556; margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .\\\\32xl\\\\:prose-sm :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; padding-left: 1.1111111em; } - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.1428571em; margin-top: 0; margin-bottom: 0.8em; line-height: 1.2; } - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.4285714em; margin-top: 1.6em; margin-bottom: 0.8em; line-height: 1.4; } - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2857143em; margin-top: 1.5555556em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.4285714em; margin-bottom: 0.5714286em; line-height: 1.4285714; } - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7142857em; margin-bottom: 1.7142857em; } - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.3333333; margin-top: 0.6666667em; } - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - font-size: 0.8571429em; - } - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - font-size: 0.8571429em; - } - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.9em; } - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - border-radius: 0.25rem; - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.6666667; margin-top: 1.6666667em; @@ -11164,350 +6241,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 0.6666667em; padding-left: 1em; } - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; margin-bottom: 1.1428571em; } - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.2857143em; margin-bottom: 0.2857143em; } - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.5714286em; - } - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.5714286em; } - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { height: 0.3571429em; width: 0.3571429em; top: calc(0.8571429em - 0.1785714em); left: 0.2142857em; } - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.1428571em; - } - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.1428571em; } - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.1428571em; - } - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.1428571em; } - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5714286em; margin-bottom: 0.5714286em; } - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8571429em; margin-bottom: 2.8571429em; } - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8571429em; line-height: 1.5; } - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.6666667em; padding-right: 1em; padding-bottom: 0.6666667em; padding-left: 1em; } - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .\\\\32xl\\\\:prose-lg { font-size: 1.125rem; line-height: 1.7777778; } - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - .\\\\32xl\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2222222em; line-height: 1.4545455; margin-top: 1.0909091em; margin-bottom: 1.0909091em; } - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 1.6666667em; padding-left: 1em; } - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.8333333em; line-height: 1; } - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.6666667em; margin-top: 1.8666667em; margin-bottom: 1.0666667em; line-height: 1.3333333; } - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.3333333em; margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 0.4444444em; line-height: 1.5555556; } - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; } - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; margin-top: 1em; } - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8666667em; - } - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8666667em; } - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.875em; } - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; - } - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.75; margin-top: 2em; @@ -11518,350 +6420,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1em; padding-left: 1.5em; } - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8888889em - 0.1666667em); left: 0.2222222em; } - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8888889em; margin-bottom: 0.8888889em; } - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3.1111111em; margin-bottom: 3.1111111em; } - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; line-height: 1.5; } - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.75em; padding-right: 0.75em; padding-bottom: 0.75em; padding-left: 0.75em; } - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .\\\\32xl\\\\:prose-xl { font-size: 1.25rem; line-height: 1.8; } - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .\\\\32xl\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.2em; line-height: 1.5; margin-top: 1em; margin-bottom: 1em; } - .\\\\32xl\\\\:prose-xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6em; margin-bottom: 1.6em; padding-left: 1.0666667em; } - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.8em; margin-top: 0; margin-bottom: 0.8571429em; line-height: 1; } - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.8em; margin-top: 1.5555556em; margin-bottom: 0.8888889em; line-height: 1.1111111; } - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.6em; margin-bottom: 0.6666667em; line-height: 1.3333333; } - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.8em; margin-bottom: 0.6em; line-height: 1.6; } - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; margin-top: 1em; } - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.8611111em; } - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8611111em; } - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; } - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.9em; - } - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.1111111em; - padding-right: 1.3333333em; - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.7777778; margin-top: 2em; @@ -11872,350 +6599,175 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.1111111em; padding-left: 1.3333333em; } - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; margin-bottom: 1.2em; } - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6em; margin-bottom: 0.6em; } - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.8em; - } - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.8em; } - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.35em; height: 0.35em; top: calc(0.9em - 0.175em); left: 0.25em; } - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.2em; - } - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.2em; } - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.2em; - } - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.2em; } - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8em; margin-bottom: 0.8em; } - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2.8em; margin-bottom: 2.8em; } - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.9em; line-height: 1.5555556; } - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8888889em; padding-right: 0.6666667em; padding-bottom: 0.8888889em; padding-left: 0.6666667em; } - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } .\\\\32xl\\\\:prose-2xl { font-size: 1.5rem; line-height: 1.6666667; } - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - .\\\\32xl\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where([class~=\\"lead\\"]):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.25em; line-height: 1.4666667; margin-top: 1.0666667em; margin-bottom: 1.0666667em; } - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.7777778em; margin-bottom: 1.7777778em; padding-left: 1.1111111em; } - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h1):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2.6666667em; margin-top: 0; margin-bottom: 0.875em; line-height: 1; } - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h2):not(:where([class~=\\"not-prose\\"] *)) { font-size: 2em; margin-top: 1.5em; margin-bottom: 0.8333333em; line-height: 1.0833333; } - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h3):not(:where([class~=\\"not-prose\\"] *)) { font-size: 1.5em; margin-top: 1.5555556em; margin-bottom: 0.6666667em; line-height: 1.2222222; } - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h4):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.6666667em; margin-bottom: 0.6666667em; line-height: 1.5; } - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(img):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(video):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(figure):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 2em; margin-bottom: 2em; } - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - margin-top: 2em; - margin-bottom: 2em; - } - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - margin-top: 0; - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; margin-bottom: 0; } - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.6; margin-top: 1em; } - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; } - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - font-size: 0.8333333em; + .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where([class~=\\"not-prose\\"] *)) { + font-size: 0.875em; } - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - font-size: 0.8333333em; - } - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - font-size: 0.875em; - } - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - font-size: 0.8888889em; - } - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8888889em; } - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.2em; - padding-right: 1.6em; - padding-bottom: 1.2em; - padding-left: 1.6em; - } - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(pre):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.8; margin-top: 2em; @@ -12226,448 +6778,226 @@ it('should generate the default classes for the typography components', async () padding-bottom: 1.2em; padding-left: 1.6em; } - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(ul):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(li):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.5em; margin-bottom: 0.5em; } - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - left: 0; - } - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~=\\"not-prose\\"] *))::before { left: 0; } - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - padding-left: 1.6666667em; - } - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 1.6666667em; } - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~=\\"not-prose\\"] *))::before { width: 0.3333333em; height: 0.3333333em; top: calc(0.8333333em - 0.1666667em); left: 0.25em; } - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.8333333em; margin-bottom: 0.8333333em; } - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - margin-top: 1.3333333em; - } - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 1.3333333em; } - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - margin-bottom: 1.3333333em; - } - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 1.3333333em; } - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0.6666667em; margin-bottom: 0.6666667em; } - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(hr):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 3em; margin-bottom: 3em; } - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - margin-top: 3em; - margin-bottom: 3em; - } - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(table):not(:where([class~=\\"not-prose\\"] *)) { font-size: 0.8333333em; line-height: 1.4; } - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where([class~=\\"not-prose\\"] *)) { padding-top: 0.8em; padding-right: 0.6em; padding-bottom: 0.8em; padding-left: 0.6em; } - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - padding-left: 0; - } - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~=\\"not-prose\\"] *)) { padding-left: 0; } - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - padding-right: 0; - } - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~=\\"not-prose\\"] *)) { padding-right: 0; } - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - margin-top: 0; - } - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where([class~=\\"not-prose\\"] *)) { margin-top: 0; } - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where([class~=\\"not-prose\\"] *)) { margin-bottom: 0; } - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - color: #475569; - } - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-slate :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-slate :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #475569; } - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - color: #52525b; - } - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-zinc :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-zinc :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #52525b; } - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - color: #525252; - } - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-neutral :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-neutral :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #525252; } - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - color: #57534e; - } - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-stone :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-stone :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #57534e; } - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - color: #dc2626; - } - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-red :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-red :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #dc2626; } - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - color: #ea580c; - } - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-orange :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-orange :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ea580c; } - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - color: #d97706; - } - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-amber :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-amber :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #d97706; } - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - color: #ca8a04; - } - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-yellow :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-yellow :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #ca8a04; } - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - color: #65a30d; - } - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lime :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-lime :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #65a30d; } - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - color: #16a34a; - } - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-green :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-green :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #16a34a; } - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - color: #059669; - } - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-emerald :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-emerald :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #059669; } - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - color: #0d9488; - } - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-teal :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-teal :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0d9488; } - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - color: #0891b2; - } - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-cyan :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-cyan :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0891b2; } - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - color: #0284c7; - } - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sky :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-sky :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #0284c7; } - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - color: #2563eb; - } - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-blue :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-blue :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #2563eb; } - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - color: #4f46e5; - } - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-indigo :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-indigo :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #4f46e5; } - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - color: #7c3aed; - } - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-violet :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-violet :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #7c3aed; } - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - color: #9333ea; - } - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-purple :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-purple :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #9333ea; } - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - color: #c026d3; - } - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #c026d3; } - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - color: #db2777; - } - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-pink :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-pink :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #db2777; } - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - color: #e11d48; - } - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - color: #e11d48; - } - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-rose :where(a):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + .\\\\32xl\\\\:prose-rose :where(a code):not(:where([class~=\\"not-prose\\"] *)) { color: #e11d48; } }" @@ -12683,65 +7013,65 @@ it('should be possible to change the default className from `prose` to `markdown - color: #374151; - max-width: 65ch; - } - - .prose :where([class~='lead']):not(:where(.not-prose *)) { + - .prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose :where(a):not(:where(.not-prose *)) { + - .prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .prose :where(strong):not(:where(.not-prose *)) { + - .prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .prose :where(ol > li):not(:where(.not-prose *)) { + - .prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .prose :where(ol > li):not(:where(.not-prose *))::before { + - .prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .prose :where(ul > li):not(:where(.not-prose *)) { + - .prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .prose :where(ul > li):not(:where(.not-prose *))::before { + - .prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -12751,13 +7081,13 @@ it('should be possible to change the default className from `prose` to `markdown - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .prose :where(hr):not(:where(.not-prose *)) { + - .prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .prose :where(blockquote):not(:where(.not-prose *)) { + - .prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -12768,13 +7098,13 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1.6em; - padding-left: 1em; - } - - .prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .prose :where(h1):not(:where(.not-prose *)) { + - .prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -12782,10 +7112,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .prose :where(h1 strong):not(:where(.not-prose *)) { + - .prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .prose :where(h2):not(:where(.not-prose *)) { + - .prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -12793,10 +7123,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1em; - line-height: 1.3333333; - } - - .prose :where(h2 strong):not(:where(.not-prose *)) { + - .prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .prose :where(h3):not(:where(.not-prose *)) { + - .prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -12804,40 +7134,40 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.6em; - line-height: 1.6; - } - - .prose :where(h3 strong):not(:where(.not-prose *)) { + - .prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .prose :where(h4):not(:where(.not-prose *)) { + - .prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .prose :where(h4 strong):not(:where(.not-prose *)) { + - .prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .prose :where(figure figcaption):not(:where(.not-prose *)) { + - .prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .prose :where(code):not(:where(.not-prose *)) { + - .prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .prose :where(code):not(:where(.not-prose *))::before { + - .prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .prose :where(code):not(:where(.not-prose *))::after { + - .prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .prose :where(a code):not(:where(.not-prose *)) { + - .prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .prose :where(pre):not(:where(.not-prose *)) { + - .prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -12851,7 +7181,7 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .prose :where(pre code):not(:where(.not-prose *)) { + - .prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -12862,13 +7192,13 @@ it('should be possible to change the default className from `prose` to `markdown - font-family: inherit; - line-height: inherit; - } - - .prose :where(pre code):not(:where(.not-prose *))::before { + - .prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .prose :where(pre code):not(:where(.not-prose *))::after { + - .prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .prose :where(table):not(:where(.not-prose *)) { + - .prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -12877,26 +7207,26 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 0.875em; - line-height: 1.7142857; - } - - .prose :where(thead):not(:where(.not-prose *)) { + - .prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .prose :where(thead th):not(:where(.not-prose *)) { + - .prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .prose :where(tbody tr):not(:where(.not-prose *)) { + - .prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .prose :where(tbody td):not(:where(.not-prose *)) { + - .prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -12907,167 +7237,167 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 1rem; - line-height: 1.75; - } - - .prose :where(p):not(:where(.not-prose *)) { + - .prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .prose :where(img):not(:where(.not-prose *)) { + - .prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose :where(video):not(:where(.not-prose *)) { + - .prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose :where(figure):not(:where(.not-prose *)) { + - .prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose :where(figure > *):not(:where(.not-prose *)) { + - .prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose :where(h2 code):not(:where(.not-prose *)) { + - .prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .prose :where(h3 code):not(:where(.not-prose *)) { + - .prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose :where(ol):not(:where(.not-prose *)) { + - .prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .prose :where(ul):not(:where(.not-prose *)) { + - .prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .prose :where(li):not(:where(.not-prose *)) { + - .prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .prose :where(> ul > li p):not(:where(.not-prose *)) { + - .prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .prose :where(hr + *):not(:where(.not-prose *)) { + - .prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(h2 + *):not(:where(.not-prose *)) { + - .prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(h3 + *):not(:where(.not-prose *)) { + - .prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(h4 + *):not(:where(.not-prose *)) { + - .prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose :where(> :first-child):not(:where(.not-prose *)) { + - .prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(> :last-child):not(:where(.not-prose *)) { + - .prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .prose-sm :where(p):not(:where(.not-prose *)) { + - .prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .prose-sm :where(h1):not(:where(.not-prose *)) { + - .prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .prose-sm :where(h2):not(:where(.not-prose *)) { + - .prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .prose-sm :where(h3):not(:where(.not-prose *)) { + - .prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .prose-sm :where(h4):not(:where(.not-prose *)) { + - .prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .prose-sm :where(img):not(:where(.not-prose *)) { + - .prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .prose-sm :where(video):not(:where(.not-prose *)) { + - .prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .prose-sm :where(figure):not(:where(.not-prose *)) { + - .prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .prose-sm :where(code):not(:where(.not-prose *)) { + - .prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .prose-sm :where(pre):not(:where(.not-prose *)) { + - .prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -13078,175 +7408,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .prose-sm :where(ol):not(:where(.not-prose *)) { + - .prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .prose-sm :where(ul):not(:where(.not-prose *)) { + - .prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .prose-sm :where(li):not(:where(.not-prose *)) { + - .prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .prose-sm :where(hr):not(:where(.not-prose *)) { + - .prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(table):not(:where(.not-prose *)) { + - .prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .prose-sm :where(thead th):not(:where(.not-prose *)) { + - .prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .prose-lg :where(p):not(:where(.not-prose *)) { + - .prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .prose-lg :where(h1):not(:where(.not-prose *)) { + - .prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .prose-lg :where(h2):not(:where(.not-prose *)) { + - .prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .prose-lg :where(h3):not(:where(.not-prose *)) { + - .prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .prose-lg :where(h4):not(:where(.not-prose *)) { + - .prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .prose-lg :where(img):not(:where(.not-prose *)) { + - .prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .prose-lg :where(video):not(:where(.not-prose *)) { + - .prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .prose-lg :where(figure):not(:where(.not-prose *)) { + - .prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .prose-lg :where(code):not(:where(.not-prose *)) { + - .prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .prose-lg :where(pre):not(:where(.not-prose *)) { + - .prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -13257,175 +7587,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1em; - padding-left: 1.5em; - } - - .prose-lg :where(ol):not(:where(.not-prose *)) { + - .prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-lg :where(ul):not(:where(.not-prose *)) { + - .prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-lg :where(li):not(:where(.not-prose *)) { + - .prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .prose-lg :where(hr):not(:where(.not-prose *)) { + - .prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .prose-lg :where(hr + *):not(:where(.not-prose *)) { + - .prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(table):not(:where(.not-prose *)) { + - .prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .prose-lg :where(thead th):not(:where(.not-prose *)) { + - .prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .prose-xl :where(p):not(:where(.not-prose *)) { + - .prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .prose-xl :where(h1):not(:where(.not-prose *)) { + - .prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .prose-xl :where(h2):not(:where(.not-prose *)) { + - .prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .prose-xl :where(h3):not(:where(.not-prose *)) { + - .prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .prose-xl :where(h4):not(:where(.not-prose *)) { + - .prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .prose-xl :where(img):not(:where(.not-prose *)) { + - .prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-xl :where(video):not(:where(.not-prose *)) { + - .prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-xl :where(figure):not(:where(.not-prose *)) { + - .prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .prose-xl :where(code):not(:where(.not-prose *)) { + - .prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose-xl :where(pre):not(:where(.not-prose *)) { + - .prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -13436,175 +7766,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .prose-xl :where(ol):not(:where(.not-prose *)) { + - .prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose-xl :where(ul):not(:where(.not-prose *)) { + - .prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose-xl :where(li):not(:where(.not-prose *)) { + - .prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .prose-xl :where(hr):not(:where(.not-prose *)) { + - .prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .prose-xl :where(hr + *):not(:where(.not-prose *)) { + - .prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(table):not(:where(.not-prose *)) { + - .prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .prose-xl :where(thead th):not(:where(.not-prose *)) { + - .prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .prose-2xl :where(p):not(:where(.not-prose *)) { + - .prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .prose-2xl :where(h1):not(:where(.not-prose *)) { + - .prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .prose-2xl :where(h2):not(:where(.not-prose *)) { + - .prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .prose-2xl :where(h3):not(:where(.not-prose *)) { + - .prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .prose-2xl :where(h4):not(:where(.not-prose *)) { + - .prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .prose-2xl :where(img):not(:where(.not-prose *)) { + - .prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-2xl :where(video):not(:where(.not-prose *)) { + - .prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-2xl :where(figure):not(:where(.not-prose *)) { + - .prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .prose-2xl :where(code):not(:where(.not-prose *)) { + - .prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .prose-2xl :where(pre):not(:where(.not-prose *)) { + - .prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -13615,226 +7945,226 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .prose-2xl :where(ol):not(:where(.not-prose *)) { + - .prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(ul):not(:where(.not-prose *)) { + - .prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(li):not(:where(.not-prose *)) { + - .prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .prose-2xl :where(hr):not(:where(.not-prose *)) { + - .prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(table):not(:where(.not-prose *)) { + - .prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .prose-slate :where(a):not(:where(.not-prose *)) { + - .prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .prose-slate :where(a code):not(:where(.not-prose *)) { + - .prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .prose-zinc :where(a):not(:where(.not-prose *)) { + - .prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .prose-zinc :where(a code):not(:where(.not-prose *)) { + - .prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .prose-neutral :where(a):not(:where(.not-prose *)) { + - .prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .prose-neutral :where(a code):not(:where(.not-prose *)) { + - .prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .prose-stone :where(a):not(:where(.not-prose *)) { + - .prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .prose-stone :where(a code):not(:where(.not-prose *)) { + - .prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .prose-red :where(a):not(:where(.not-prose *)) { + - .prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .prose-red :where(a code):not(:where(.not-prose *)) { + - .prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .prose-orange :where(a):not(:where(.not-prose *)) { + - .prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .prose-orange :where(a code):not(:where(.not-prose *)) { + - .prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .prose-amber :where(a):not(:where(.not-prose *)) { + - .prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .prose-amber :where(a code):not(:where(.not-prose *)) { + - .prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .prose-yellow :where(a):not(:where(.not-prose *)) { + - .prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .prose-yellow :where(a code):not(:where(.not-prose *)) { + - .prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .prose-lime :where(a):not(:where(.not-prose *)) { + - .prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .prose-lime :where(a code):not(:where(.not-prose *)) { + - .prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .prose-green :where(a):not(:where(.not-prose *)) { + - .prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .prose-green :where(a code):not(:where(.not-prose *)) { + - .prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .prose-emerald :where(a):not(:where(.not-prose *)) { + - .prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .prose-emerald :where(a code):not(:where(.not-prose *)) { + - .prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .prose-teal :where(a):not(:where(.not-prose *)) { + - .prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .prose-teal :where(a code):not(:where(.not-prose *)) { + - .prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .prose-cyan :where(a):not(:where(.not-prose *)) { + - .prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .prose-cyan :where(a code):not(:where(.not-prose *)) { + - .prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .prose-sky :where(a):not(:where(.not-prose *)) { + - .prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .prose-sky :where(a code):not(:where(.not-prose *)) { + - .prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .prose-blue :where(a):not(:where(.not-prose *)) { + - .prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .prose-blue :where(a code):not(:where(.not-prose *)) { + - .prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .prose-indigo :where(a):not(:where(.not-prose *)) { + - .prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .prose-indigo :where(a code):not(:where(.not-prose *)) { + - .prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .prose-violet :where(a):not(:where(.not-prose *)) { + - .prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .prose-violet :where(a code):not(:where(.not-prose *)) { + - .prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .prose-purple :where(a):not(:where(.not-prose *)) { + - .prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .prose-purple :where(a code):not(:where(.not-prose *)) { + - .prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .prose-pink :where(a):not(:where(.not-prose *)) { + - .prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .prose-pink :where(a code):not(:where(.not-prose *)) { + - .prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .prose-rose :where(a):not(:where(.not-prose *)) { + - .prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .prose-rose :where(a code):not(:where(.not-prose *)) { + - .prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - @media (min-width: 640px) { @@ -13842,133 +8172,65 @@ it('should be possible to change the default className from `prose` to `markdown - color: #374151; - max-width: 65ch; - } - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -13978,30 +8240,13 @@ it('should be possible to change the default className from `prose` to `markdown - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -14012,27 +8257,13 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1.6em; - padding-left: 1em; - } - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -14040,21 +8271,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -14062,21 +8282,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1em; - line-height: 1.3333333; - } - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -14084,87 +8293,40 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.6em; - line-height: 1.6; - } - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -14178,18 +8340,7 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -14200,28 +8351,13 @@ it('should be possible to change the default className from `prose` to `markdown - font-family: inherit; - line-height: inherit; - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -14230,52 +8366,26 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 0.875em; - line-height: 1.7142857; - } - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -14286,334 +8396,167 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 1rem; - line-height: 1.75; - } - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -14624,350 +8567,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -14978,350 +8746,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1em; - padding-left: 1.5em; - } - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - } - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -15332,350 +8925,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -15686,448 +9104,226 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -16136,133 +9332,65 @@ it('should be possible to change the default className from `prose` to `markdown - color: #374151; - max-width: 65ch; - } - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -16272,30 +9400,13 @@ it('should be possible to change the default className from `prose` to `markdown - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -16306,27 +9417,13 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1.6em; - padding-left: 1em; - } - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -16334,21 +9431,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -16356,21 +9442,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1em; - line-height: 1.3333333; - } - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -16378,87 +9453,40 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.6em; - line-height: 1.6; - } - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -16472,18 +9500,7 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -16494,28 +9511,13 @@ it('should be possible to change the default className from `prose` to `markdown - font-family: inherit; - line-height: inherit; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -16524,52 +9526,26 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 0.875em; - line-height: 1.7142857; - } - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -16580,334 +9556,167 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 1rem; - line-height: 1.75; - } - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - } - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -16918,350 +9727,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -17272,350 +9906,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1em; - padding-left: 1.5em; - } - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - } - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - } - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -17626,350 +10085,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -17980,448 +10264,226 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -18430,133 +10492,65 @@ it('should be possible to change the default className from `prose` to `markdown - color: #374151; - max-width: 65ch; - } - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -18566,30 +10560,13 @@ it('should be possible to change the default className from `prose` to `markdown - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -18600,19 +10577,13 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1.6em; - padding-left: 1em; - } - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -18620,29 +10591,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -18650,21 +10602,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1em; - line-height: 1.3333333; - } - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -18672,87 +10613,40 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.6em; - line-height: 1.6; - } - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -18766,18 +10660,7 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -18788,28 +10671,13 @@ it('should be possible to change the default className from `prose` to `markdown - font-family: inherit; - line-height: inherit; - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -18818,52 +10686,26 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 0.875em; - line-height: 1.7142857; - } - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -18874,334 +10716,167 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 1rem; - line-height: 1.75; - } - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -19212,350 +10887,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -19566,350 +11066,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1em; - padding-left: 1.5em; - } - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - } - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -19920,350 +11245,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -20274,448 +11424,226 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -20724,133 +11652,65 @@ it('should be possible to change the default className from `prose` to `markdown - color: #374151; - max-width: 65ch; - } - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -20860,30 +11720,13 @@ it('should be possible to change the default className from `prose` to `markdown - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -20894,27 +11737,13 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1.6em; - padding-left: 1em; - } - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -20922,21 +11751,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -20944,21 +11762,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1em; - line-height: 1.3333333; - } - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -20966,87 +11773,40 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.6em; - line-height: 1.6; - } - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -21060,18 +11820,7 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -21082,28 +11831,13 @@ it('should be possible to change the default className from `prose` to `markdown - font-family: inherit; - line-height: inherit; - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -21112,52 +11846,26 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 0.875em; - line-height: 1.7142857; - } - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -21168,334 +11876,167 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 1rem; - line-height: 1.75; - } - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -21506,350 +12047,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -21860,339 +12226,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1em; - padding-left: 1.5em; - } - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -22203,361 +12405,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - } - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -22568,448 +12584,226 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -23018,133 +12812,65 @@ it('should be possible to change the default className from `prose` to `markdown - color: #374151; - max-width: 65ch; - } - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - - text-decoration: underline; - - font-weight: 500; + - font-weight: 600; - } - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -23154,30 +12880,13 @@ it('should be possible to change the default className from `prose` to `markdown - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -23188,19 +12897,13 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1.6em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -23208,29 +12911,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -23238,21 +12922,10 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 1em; - line-height: 1.3333333; - } - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -23260,87 +12933,40 @@ it('should be possible to change the default className from `prose` to `markdown - margin-bottom: 0.6em; - line-height: 1.6; - } - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -23354,18 +12980,7 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -23376,28 +12991,13 @@ it('should be possible to change the default className from `prose` to `markdown - font-family: inherit; - line-height: inherit; - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -23406,52 +13006,26 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 0.875em; - line-height: 1.7142857; - } - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -23462,334 +13036,167 @@ it('should be possible to change the default className from `prose` to `markdown - font-size: 1rem; - line-height: 1.75; - } - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -23800,350 +13207,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -24154,339 +13386,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1em; - padding-left: 1.5em; - } - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -24497,350 +13565,175 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -24851,459 +13744,226 @@ it('should be possible to change the default className from `prose` to `markdown - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -25316,14734 +13976,8819 @@ it('should be possible to disable the use of :where() by setting `target` to `le expect(await diffOnly({ target: 'legacy' })).toMatchInlineSnapshot(` " - - .prose :where([class~='lead']):not(:where(.not-prose *)) { + - .prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .prose [class~='lead'] { --- - - .prose :where(a):not(:where(.not-prose *)) { + - .prose :where(a):not(:where([class~='not-prose'] *)) { + .prose a { --- - - .prose :where(strong):not(:where(.not-prose *)) { + - .prose :where(strong):not(:where([class~='not-prose'] *)) { + .prose strong { --- - - .prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + .prose ol[type='A'] { --- - - .prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + .prose ol[type='a'] { --- - - .prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + .prose ol[type='A' s] { --- - - .prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + .prose ol[type='a' s] { --- - - .prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + .prose ol[type='I'] { --- - - .prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + .prose ol[type='i'] { --- - - .prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + .prose ol[type='I' s] { --- - - .prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + .prose ol[type='i' s] { --- - - .prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + .prose ol[type='1'] { --- - - .prose :where(ol > li):not(:where(.not-prose *)) { + - .prose :where(ol > li):not(:where([class~='not-prose'] *)) { + .prose ol > li { --- - - .prose :where(ol > li):not(:where(.not-prose *))::before { + - .prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + .prose ol > li::before { --- - - .prose :where(ul > li):not(:where(.not-prose *)) { + - .prose :where(ul > li):not(:where([class~='not-prose'] *)) { + .prose ul > li { --- - - .prose :where(ul > li):not(:where(.not-prose *))::before { + - .prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + .prose ul > li::before { --- - - .prose :where(hr):not(:where(.not-prose *)) { + - .prose :where(hr):not(:where([class~='not-prose'] *)) { + .prose hr { --- - - .prose :where(blockquote):not(:where(.not-prose *)) { + - .prose :where(blockquote):not(:where([class~='not-prose'] *)) { + .prose blockquote { --- - - .prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + .prose blockquote p:first-of-type::before { --- - - .prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + .prose blockquote p:last-of-type::after { --- - - .prose :where(h1):not(:where(.not-prose *)) { + - .prose :where(h1):not(:where([class~='not-prose'] *)) { + .prose h1 { --- - - .prose :where(h1 strong):not(:where(.not-prose *)) { + - .prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + .prose h1 strong { --- - - .prose :where(h2):not(:where(.not-prose *)) { + - .prose :where(h2):not(:where([class~='not-prose'] *)) { + .prose h2 { --- - - .prose :where(h2 strong):not(:where(.not-prose *)) { + - .prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + .prose h2 strong { --- - - .prose :where(h3):not(:where(.not-prose *)) { + - .prose :where(h3):not(:where([class~='not-prose'] *)) { + .prose h3 { --- - - .prose :where(h3 strong):not(:where(.not-prose *)) { + - .prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + .prose h3 strong { --- - - .prose :where(h4):not(:where(.not-prose *)) { + - .prose :where(h4):not(:where([class~='not-prose'] *)) { + .prose h4 { --- - - .prose :where(h4 strong):not(:where(.not-prose *)) { + - .prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + .prose h4 strong { --- - - .prose :where(figure figcaption):not(:where(.not-prose *)) { + - .prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .prose figure figcaption { --- - - .prose :where(code):not(:where(.not-prose *)) { + - .prose :where(code):not(:where([class~='not-prose'] *)) { + .prose code { --- - - .prose :where(code):not(:where(.not-prose *))::before { + - .prose :where(code):not(:where([class~='not-prose'] *))::before { + .prose code::before { --- - - .prose :where(code):not(:where(.not-prose *))::after { + - .prose :where(code):not(:where([class~='not-prose'] *))::after { + .prose code::after { --- - - .prose :where(a code):not(:where(.not-prose *)) { + - .prose :where(a code):not(:where([class~='not-prose'] *)) { + .prose a code { --- - - .prose :where(pre):not(:where(.not-prose *)) { + - .prose :where(pre):not(:where([class~='not-prose'] *)) { + .prose pre { --- - - .prose :where(pre code):not(:where(.not-prose *)) { + - .prose :where(pre code):not(:where([class~='not-prose'] *)) { + .prose pre code { --- - - .prose :where(pre code):not(:where(.not-prose *))::before { + - .prose :where(pre code):not(:where([class~='not-prose'] *))::before { + .prose pre code::before { --- - - .prose :where(pre code):not(:where(.not-prose *))::after { + - .prose :where(pre code):not(:where([class~='not-prose'] *))::after { + .prose pre code::after { --- - - .prose :where(table):not(:where(.not-prose *)) { + - .prose :where(table):not(:where([class~='not-prose'] *)) { + .prose table { --- - - .prose :where(thead):not(:where(.not-prose *)) { + - .prose :where(thead):not(:where([class~='not-prose'] *)) { + .prose thead { --- - - .prose :where(thead th):not(:where(.not-prose *)) { + - .prose :where(thead th):not(:where([class~='not-prose'] *)) { + .prose thead th { --- - - .prose :where(tbody tr):not(:where(.not-prose *)) { + - .prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + .prose tbody tr { --- - - .prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + .prose tbody tr:last-child { --- - - .prose :where(tbody td):not(:where(.not-prose *)) { + - .prose :where(tbody td):not(:where([class~='not-prose'] *)) { + .prose tbody td { --- - - .prose :where(p):not(:where(.not-prose *)) { + - .prose :where(p):not(:where([class~='not-prose'] *)) { + .prose p { --- - - .prose :where(img):not(:where(.not-prose *)) { + - .prose :where(img):not(:where([class~='not-prose'] *)) { + .prose img { --- - - .prose :where(video):not(:where(.not-prose *)) { + - .prose :where(video):not(:where([class~='not-prose'] *)) { + .prose video { --- - - .prose :where(figure):not(:where(.not-prose *)) { + - .prose :where(figure):not(:where([class~='not-prose'] *)) { + .prose figure { --- - - .prose :where(figure > *):not(:where(.not-prose *)) { + - .prose :where(figure > *):not(:where([class~='not-prose'] *)) { + .prose figure > * { --- - - .prose :where(h2 code):not(:where(.not-prose *)) { + - .prose :where(h2 code):not(:where([class~='not-prose'] *)) { + .prose h2 code { --- - - .prose :where(h3 code):not(:where(.not-prose *)) { + - .prose :where(h3 code):not(:where([class~='not-prose'] *)) { + .prose h3 code { --- - - .prose :where(ol):not(:where(.not-prose *)) { + - .prose :where(ol):not(:where([class~='not-prose'] *)) { + .prose ol { --- - - .prose :where(ul):not(:where(.not-prose *)) { + - .prose :where(ul):not(:where([class~='not-prose'] *)) { + .prose ul { --- - - .prose :where(li):not(:where(.not-prose *)) { + - .prose :where(li):not(:where([class~='not-prose'] *)) { + .prose li { --- - - .prose :where(> ul > li p):not(:where(.not-prose *)) { + - .prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .prose > ul > li p { --- - - .prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose > ul > li > *:first-child { --- - - .prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose > ul > li > *:last-child { --- - - .prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose > ol > li > *:first-child { --- - - .prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose > ol > li > *:last-child { --- - - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol { --- - - .prose :where(hr + *):not(:where(.not-prose *)) { + - .prose :where(hr + *):not(:where([class~='not-prose'] *)) { + .prose hr + * { --- - - .prose :where(h2 + *):not(:where(.not-prose *)) { + - .prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + .prose h2 + * { --- - - .prose :where(h3 + *):not(:where(.not-prose *)) { + - .prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + .prose h3 + * { --- - - .prose :where(h4 + *):not(:where(.not-prose *)) { + - .prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + .prose h4 + * { --- - - .prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .prose thead th:first-child { --- - - .prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .prose thead th:last-child { --- - - .prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .prose tbody td:first-child { --- - - .prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .prose tbody td:last-child { --- - - .prose :where(> :first-child):not(:where(.not-prose *)) { + - .prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + .prose > :first-child { --- - - .prose :where(> :last-child):not(:where(.not-prose *)) { + - .prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + .prose > :last-child { --- - - .prose-sm :where(p):not(:where(.not-prose *)) { + - .prose-sm :where(p):not(:where([class~='not-prose'] *)) { + .prose-sm p { --- - - .prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .prose-sm [class~='lead'] { --- - - .prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + .prose-sm blockquote { --- - - .prose-sm :where(h1):not(:where(.not-prose *)) { + - .prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + .prose-sm h1 { --- - - .prose-sm :where(h2):not(:where(.not-prose *)) { + - .prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + .prose-sm h2 { --- - - .prose-sm :where(h3):not(:where(.not-prose *)) { + - .prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + .prose-sm h3 { --- - - .prose-sm :where(h4):not(:where(.not-prose *)) { + - .prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + .prose-sm h4 { --- - - .prose-sm :where(img):not(:where(.not-prose *)) { + - .prose-sm :where(img):not(:where([class~='not-prose'] *)) { + .prose-sm img { --- - - .prose-sm :where(video):not(:where(.not-prose *)) { + - .prose-sm :where(video):not(:where([class~='not-prose'] *)) { + .prose-sm video { --- - - .prose-sm :where(figure):not(:where(.not-prose *)) { + - .prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + .prose-sm figure { --- - - .prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + .prose-sm figure > * { --- - - .prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .prose-sm figure figcaption { --- - - .prose-sm :where(code):not(:where(.not-prose *)) { + - .prose-sm :where(code):not(:where([class~='not-prose'] *)) { + .prose-sm code { --- - - .prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + .prose-sm h2 code { --- - - .prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + .prose-sm h3 code { --- - - .prose-sm :where(pre):not(:where(.not-prose *)) { + - .prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + .prose-sm pre { --- - - .prose-sm :where(ol):not(:where(.not-prose *)) { + - .prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + .prose-sm ol { --- - - .prose-sm :where(ul):not(:where(.not-prose *)) { + - .prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + .prose-sm ul { --- - - .prose-sm :where(li):not(:where(.not-prose *)) { + - .prose-sm :where(li):not(:where([class~='not-prose'] *)) { + .prose-sm li { --- - - .prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + .prose-sm ol > li { --- - - .prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + .prose-sm ol > li::before { --- - - .prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + .prose-sm ul > li { --- - - .prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + .prose-sm ul > li::before { --- - - .prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .prose-sm > ul > li p { --- - - .prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-sm > ul > li > *:first-child { --- - - .prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-sm > ul > li > *:last-child { --- - - .prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-sm > ol > li > *:first-child { --- - - .prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-sm > ol > li > *:last-child { --- - - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .prose-sm ul ul, .prose-sm ul ol, .prose-sm ol ul, .prose-sm ol ol { --- - - .prose-sm :where(hr):not(:where(.not-prose *)) { + - .prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + .prose-sm hr { --- - - .prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + .prose-sm hr + * { --- - - .prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + .prose-sm h2 + * { --- - - .prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + .prose-sm h3 + * { --- - - .prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + .prose-sm h4 + * { --- - - .prose-sm :where(table):not(:where(.not-prose *)) { + - .prose-sm :where(table):not(:where([class~='not-prose'] *)) { + .prose-sm table { --- - - .prose-sm :where(thead th):not(:where(.not-prose *)) { + - .prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + .prose-sm thead th { --- - - .prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .prose-sm thead th:first-child { --- - - .prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .prose-sm thead th:last-child { --- - - .prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + .prose-sm tbody td { --- - - .prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .prose-sm tbody td:first-child { --- - - .prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .prose-sm tbody td:last-child { --- - - .prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + .prose-sm > :first-child { --- - - .prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + .prose-sm > :last-child { --- - - .prose-lg :where(p):not(:where(.not-prose *)) { + - .prose-lg :where(p):not(:where([class~='not-prose'] *)) { + .prose-lg p { --- - - .prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .prose-lg [class~='lead'] { --- - - .prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + .prose-lg blockquote { --- - - .prose-lg :where(h1):not(:where(.not-prose *)) { + - .prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + .prose-lg h1 { --- - - .prose-lg :where(h2):not(:where(.not-prose *)) { + - .prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + .prose-lg h2 { --- - - .prose-lg :where(h3):not(:where(.not-prose *)) { + - .prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + .prose-lg h3 { --- - - .prose-lg :where(h4):not(:where(.not-prose *)) { + - .prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + .prose-lg h4 { --- - - .prose-lg :where(img):not(:where(.not-prose *)) { + - .prose-lg :where(img):not(:where([class~='not-prose'] *)) { + .prose-lg img { --- - - .prose-lg :where(video):not(:where(.not-prose *)) { + - .prose-lg :where(video):not(:where([class~='not-prose'] *)) { + .prose-lg video { --- - - .prose-lg :where(figure):not(:where(.not-prose *)) { + - .prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + .prose-lg figure { --- - - .prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + .prose-lg figure > * { --- - - .prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .prose-lg figure figcaption { --- - - .prose-lg :where(code):not(:where(.not-prose *)) { + - .prose-lg :where(code):not(:where([class~='not-prose'] *)) { + .prose-lg code { --- - - .prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + .prose-lg h2 code { --- - - .prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + .prose-lg h3 code { --- - - .prose-lg :where(pre):not(:where(.not-prose *)) { + - .prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + .prose-lg pre { --- - - .prose-lg :where(ol):not(:where(.not-prose *)) { + - .prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + .prose-lg ol { --- - - .prose-lg :where(ul):not(:where(.not-prose *)) { + - .prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + .prose-lg ul { --- - - .prose-lg :where(li):not(:where(.not-prose *)) { + - .prose-lg :where(li):not(:where([class~='not-prose'] *)) { + .prose-lg li { --- - - .prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + .prose-lg ol > li { --- - - .prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + .prose-lg ol > li::before { --- - - .prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + .prose-lg ul > li { --- - - .prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + .prose-lg ul > li::before { --- - - .prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .prose-lg > ul > li p { --- - - .prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-lg > ul > li > *:first-child { --- - - .prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-lg > ul > li > *:last-child { --- - - .prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-lg > ol > li > *:first-child { --- - - .prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-lg > ol > li > *:last-child { --- - - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .prose-lg ul ul, .prose-lg ul ol, .prose-lg ol ul, .prose-lg ol ol { --- - - .prose-lg :where(hr):not(:where(.not-prose *)) { + - .prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + .prose-lg hr { --- - - .prose-lg :where(hr + *):not(:where(.not-prose *)) { + - .prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + .prose-lg hr + * { --- - - .prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + .prose-lg h2 + * { --- - - .prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + .prose-lg h3 + * { --- - - .prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + .prose-lg h4 + * { --- - - .prose-lg :where(table):not(:where(.not-prose *)) { + - .prose-lg :where(table):not(:where([class~='not-prose'] *)) { + .prose-lg table { --- - - .prose-lg :where(thead th):not(:where(.not-prose *)) { + - .prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + .prose-lg thead th { --- - - .prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .prose-lg thead th:first-child { --- - - .prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .prose-lg thead th:last-child { --- - - .prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + .prose-lg tbody td { --- - - .prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .prose-lg tbody td:first-child { --- - - .prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .prose-lg tbody td:last-child { --- - - .prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + .prose-lg > :first-child { --- - - .prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + .prose-lg > :last-child { --- - - .prose-xl :where(p):not(:where(.not-prose *)) { + - .prose-xl :where(p):not(:where([class~='not-prose'] *)) { + .prose-xl p { --- - - .prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .prose-xl [class~='lead'] { --- - - .prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .prose-xl blockquote { --- - - .prose-xl :where(h1):not(:where(.not-prose *)) { + - .prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + .prose-xl h1 { --- - - .prose-xl :where(h2):not(:where(.not-prose *)) { + - .prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + .prose-xl h2 { --- - - .prose-xl :where(h3):not(:where(.not-prose *)) { + - .prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + .prose-xl h3 { --- - - .prose-xl :where(h4):not(:where(.not-prose *)) { + - .prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + .prose-xl h4 { --- - - .prose-xl :where(img):not(:where(.not-prose *)) { + - .prose-xl :where(img):not(:where([class~='not-prose'] *)) { + .prose-xl img { --- - - .prose-xl :where(video):not(:where(.not-prose *)) { + - .prose-xl :where(video):not(:where([class~='not-prose'] *)) { + .prose-xl video { --- - - .prose-xl :where(figure):not(:where(.not-prose *)) { + - .prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + .prose-xl figure { --- - - .prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .prose-xl figure > * { --- - - .prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .prose-xl figure figcaption { --- - - .prose-xl :where(code):not(:where(.not-prose *)) { + - .prose-xl :where(code):not(:where([class~='not-prose'] *)) { + .prose-xl code { --- - - .prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .prose-xl h2 code { --- - - .prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .prose-xl h3 code { --- - - .prose-xl :where(pre):not(:where(.not-prose *)) { + - .prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + .prose-xl pre { --- - - .prose-xl :where(ol):not(:where(.not-prose *)) { + - .prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + .prose-xl ol { --- - - .prose-xl :where(ul):not(:where(.not-prose *)) { + - .prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + .prose-xl ul { --- - - .prose-xl :where(li):not(:where(.not-prose *)) { + - .prose-xl :where(li):not(:where([class~='not-prose'] *)) { + .prose-xl li { --- - - .prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .prose-xl ol > li { --- - - .prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .prose-xl ol > li::before { --- - - .prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .prose-xl ul > li { --- - - .prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .prose-xl ul > li::before { --- - - .prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .prose-xl > ul > li p { --- - - .prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-xl > ul > li > *:first-child { --- - - .prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-xl > ul > li > *:last-child { --- - - .prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-xl > ol > li > *:first-child { --- - - .prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-xl > ol > li > *:last-child { --- - - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .prose-xl ul ul, .prose-xl ul ol, .prose-xl ol ul, .prose-xl ol ol { --- - - .prose-xl :where(hr):not(:where(.not-prose *)) { + - .prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + .prose-xl hr { --- - - .prose-xl :where(hr + *):not(:where(.not-prose *)) { + - .prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .prose-xl hr + * { --- - - .prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .prose-xl h2 + * { --- - - .prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .prose-xl h3 + * { --- - - .prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .prose-xl h4 + * { --- - - .prose-xl :where(table):not(:where(.not-prose *)) { + - .prose-xl :where(table):not(:where([class~='not-prose'] *)) { + .prose-xl table { --- - - .prose-xl :where(thead th):not(:where(.not-prose *)) { + - .prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + .prose-xl thead th { --- - - .prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .prose-xl thead th:first-child { --- - - .prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .prose-xl thead th:last-child { --- - - .prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .prose-xl tbody td { --- - - .prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .prose-xl tbody td:first-child { --- - - .prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .prose-xl tbody td:last-child { --- - - .prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .prose-xl > :first-child { --- - - .prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .prose-xl > :last-child { --- - - .prose-2xl :where(p):not(:where(.not-prose *)) { + - .prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + .prose-2xl p { --- - - .prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .prose-2xl [class~='lead'] { --- - - .prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .prose-2xl blockquote { --- - - .prose-2xl :where(h1):not(:where(.not-prose *)) { + - .prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + .prose-2xl h1 { --- - - .prose-2xl :where(h2):not(:where(.not-prose *)) { + - .prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + .prose-2xl h2 { --- - - .prose-2xl :where(h3):not(:where(.not-prose *)) { + - .prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + .prose-2xl h3 { --- - - .prose-2xl :where(h4):not(:where(.not-prose *)) { + - .prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + .prose-2xl h4 { --- - - .prose-2xl :where(img):not(:where(.not-prose *)) { + - .prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + .prose-2xl img { --- - - .prose-2xl :where(video):not(:where(.not-prose *)) { + - .prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + .prose-2xl video { --- - - .prose-2xl :where(figure):not(:where(.not-prose *)) { + - .prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + .prose-2xl figure { --- - - .prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .prose-2xl figure > * { --- - - .prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .prose-2xl figure figcaption { --- - - .prose-2xl :where(code):not(:where(.not-prose *)) { + - .prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + .prose-2xl code { --- - - .prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .prose-2xl h2 code { --- - - .prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .prose-2xl h3 code { --- - - .prose-2xl :where(pre):not(:where(.not-prose *)) { + - .prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + .prose-2xl pre { --- - - .prose-2xl :where(ol):not(:where(.not-prose *)) { + - .prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + .prose-2xl ol { --- - - .prose-2xl :where(ul):not(:where(.not-prose *)) { + - .prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + .prose-2xl ul { --- - - .prose-2xl :where(li):not(:where(.not-prose *)) { + - .prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + .prose-2xl li { --- - - .prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .prose-2xl ol > li { --- - - .prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .prose-2xl ol > li::before { --- - - .prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .prose-2xl ul > li { --- - - .prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .prose-2xl ul > li::before { --- - - .prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .prose-2xl > ul > li p { --- - - .prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-2xl > ul > li > *:first-child { --- - - .prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-2xl > ul > li > *:last-child { --- - - .prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .prose-2xl > ol > li > *:first-child { --- - - .prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .prose-2xl > ol > li > *:last-child { --- - - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .prose-2xl ul ul, .prose-2xl ul ol, .prose-2xl ol ul, .prose-2xl ol ol { --- - - .prose-2xl :where(hr):not(:where(.not-prose *)) { + - .prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + .prose-2xl hr { --- - - .prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .prose-2xl hr + * { --- - - .prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .prose-2xl h2 + * { --- - - .prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .prose-2xl h3 + * { --- - - .prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .prose-2xl h4 + * { --- - - .prose-2xl :where(table):not(:where(.not-prose *)) { + - .prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + .prose-2xl table { --- - - .prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + .prose-2xl thead th { --- - - .prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .prose-2xl thead th:first-child { --- - - .prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .prose-2xl thead th:last-child { --- - - .prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .prose-2xl tbody td { --- - - .prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .prose-2xl tbody td:first-child { --- - - .prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .prose-2xl tbody td:last-child { --- - - .prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .prose-2xl > :first-child { --- - - .prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .prose-2xl > :last-child { --- - - .prose-slate :where(a):not(:where(.not-prose *)) { + - .prose-slate :where(a):not(:where([class~='not-prose'] *)) { + .prose-slate a { --- - - .prose-slate :where(a code):not(:where(.not-prose *)) { + - .prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + .prose-slate a code { --- - - .prose-zinc :where(a):not(:where(.not-prose *)) { + - .prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + .prose-zinc a { --- - - .prose-zinc :where(a code):not(:where(.not-prose *)) { + - .prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + .prose-zinc a code { --- - - .prose-neutral :where(a):not(:where(.not-prose *)) { + - .prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + .prose-neutral a { --- - - .prose-neutral :where(a code):not(:where(.not-prose *)) { + - .prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + .prose-neutral a code { --- - - .prose-stone :where(a):not(:where(.not-prose *)) { + - .prose-stone :where(a):not(:where([class~='not-prose'] *)) { + .prose-stone a { --- - - .prose-stone :where(a code):not(:where(.not-prose *)) { + - .prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + .prose-stone a code { --- - - .prose-red :where(a):not(:where(.not-prose *)) { + - .prose-red :where(a):not(:where([class~='not-prose'] *)) { + .prose-red a { --- - - .prose-red :where(a code):not(:where(.not-prose *)) { + - .prose-red :where(a code):not(:where([class~='not-prose'] *)) { + .prose-red a code { --- - - .prose-orange :where(a):not(:where(.not-prose *)) { + - .prose-orange :where(a):not(:where([class~='not-prose'] *)) { + .prose-orange a { --- - - .prose-orange :where(a code):not(:where(.not-prose *)) { + - .prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + .prose-orange a code { --- - - .prose-amber :where(a):not(:where(.not-prose *)) { + - .prose-amber :where(a):not(:where([class~='not-prose'] *)) { + .prose-amber a { --- - - .prose-amber :where(a code):not(:where(.not-prose *)) { + - .prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + .prose-amber a code { --- - - .prose-yellow :where(a):not(:where(.not-prose *)) { + - .prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + .prose-yellow a { --- - - .prose-yellow :where(a code):not(:where(.not-prose *)) { + - .prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + .prose-yellow a code { --- - - .prose-lime :where(a):not(:where(.not-prose *)) { + - .prose-lime :where(a):not(:where([class~='not-prose'] *)) { + .prose-lime a { --- - - .prose-lime :where(a code):not(:where(.not-prose *)) { + - .prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + .prose-lime a code { --- - - .prose-green :where(a):not(:where(.not-prose *)) { + - .prose-green :where(a):not(:where([class~='not-prose'] *)) { + .prose-green a { --- - - .prose-green :where(a code):not(:where(.not-prose *)) { + - .prose-green :where(a code):not(:where([class~='not-prose'] *)) { + .prose-green a code { --- - - .prose-emerald :where(a):not(:where(.not-prose *)) { + - .prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + .prose-emerald a { --- - - .prose-emerald :where(a code):not(:where(.not-prose *)) { + - .prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + .prose-emerald a code { --- - - .prose-teal :where(a):not(:where(.not-prose *)) { + - .prose-teal :where(a):not(:where([class~='not-prose'] *)) { + .prose-teal a { --- - - .prose-teal :where(a code):not(:where(.not-prose *)) { + - .prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + .prose-teal a code { --- - - .prose-cyan :where(a):not(:where(.not-prose *)) { + - .prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + .prose-cyan a { --- - - .prose-cyan :where(a code):not(:where(.not-prose *)) { + - .prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + .prose-cyan a code { --- - - .prose-sky :where(a):not(:where(.not-prose *)) { + - .prose-sky :where(a):not(:where([class~='not-prose'] *)) { + .prose-sky a { --- - - .prose-sky :where(a code):not(:where(.not-prose *)) { + - .prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + .prose-sky a code { --- - - .prose-blue :where(a):not(:where(.not-prose *)) { + - .prose-blue :where(a):not(:where([class~='not-prose'] *)) { + .prose-blue a { --- - - .prose-blue :where(a code):not(:where(.not-prose *)) { + - .prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + .prose-blue a code { --- - - .prose-indigo :where(a):not(:where(.not-prose *)) { + - .prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + .prose-indigo a { --- - - .prose-indigo :where(a code):not(:where(.not-prose *)) { + - .prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + .prose-indigo a code { --- - - .prose-violet :where(a):not(:where(.not-prose *)) { + - .prose-violet :where(a):not(:where([class~='not-prose'] *)) { + .prose-violet a { --- - - .prose-violet :where(a code):not(:where(.not-prose *)) { + - .prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + .prose-violet a code { --- - - .prose-purple :where(a):not(:where(.not-prose *)) { + - .prose-purple :where(a):not(:where([class~='not-prose'] *)) { + .prose-purple a { --- - - .prose-purple :where(a code):not(:where(.not-prose *)) { + - .prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + .prose-purple a code { --- - - .prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + .prose-fuchsia a { --- - - .prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + .prose-fuchsia a code { --- - - .prose-pink :where(a):not(:where(.not-prose *)) { + - .prose-pink :where(a):not(:where([class~='not-prose'] *)) { + .prose-pink a { --- - - .prose-pink :where(a code):not(:where(.not-prose *)) { + - .prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + .prose-pink a code { --- - - .prose-rose :where(a):not(:where(.not-prose *)) { + - .prose-rose :where(a):not(:where([class~='not-prose'] *)) { + .prose-rose a { --- - - .prose-rose :where(a code):not(:where(.not-prose *)) { + - .prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + .prose-rose a code { --- - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose [class~='lead'] { --- - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose a { --- - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose strong { --- - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='A'] { --- - - } - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - --- - - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='a'] { --- - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='A' s] { --- - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='a' s] { --- - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='I'] { --- - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='i'] { --- - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='I' s] { --- - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='i' s] { --- - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol[type='1'] { --- - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol > li { --- - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose ol > li::before { --- - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ul > li { --- - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose ul > li::before { --- - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose hr { --- - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose blockquote { --- - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose blockquote p:first-of-type::before { --- - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + .sm\\\\:prose blockquote p:last-of-type::after { --- - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h1 { --- - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h1 strong { --- - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h2 { --- - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h2 strong { --- - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h3 { --- - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h3 strong { --- - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h4 { --- - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h4 strong { --- - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose figure figcaption { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose code { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose code::before { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + .sm\\\\:prose code::after { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose a code { --- - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose pre { --- - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose pre code { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose pre code::before { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + .sm\\\\:prose pre code::after { --- - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose table { --- - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose thead { --- - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose thead th { --- - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose tbody tr { --- - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose tbody tr:last-child { --- - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose tbody td { --- - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose p { --- - - } - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - --- - - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose img { --- - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose video { --- - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose figure { --- - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose figure > * { --- - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h2 code { --- - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h3 code { --- - - } - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - --- - - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ol { --- - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ul { --- - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose li { --- - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose > ul > li p { --- - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose > ul > li > *:first-child { --- - - } - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - --- - - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose > ul > li > *:last-child { --- - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose > ol > li > *:first-child { --- - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose > ol > li > *:last-child { --- - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; + + } + .sm\\\\:prose ul ul, .sm\\\\:prose ul ol, .sm\\\\:prose ol ul, .sm\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; --- - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:prose ul ul, .sm\\\\:prose ul ol, .sm\\\\:prose ol ul, .sm\\\\:prose ol ol { - - --- - - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose ul ul, .sm\\\\:prose ul ol, .sm\\\\:prose ol ul, .sm\\\\:prose ol ol { - - --- - - - } - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; + + margin-top: 0.75em; + + margin-bottom: 0.75em; + + } + .sm\\\\:prose ul ul, .sm\\\\:prose ul ol, .sm\\\\:prose ol ul, .sm\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; + + } + + .sm\\\\:prose ul ul, .sm\\\\:prose ul ol, .sm\\\\:prose ol ul, .sm\\\\:prose ol ol { --- - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose hr + * { --- - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h2 + * { --- - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h3 + * { --- - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose h4 + * { --- - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose thead th:first-child { --- - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose thead th:last-child { --- - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose tbody td:first-child { --- - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose tbody td:last-child { --- - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose > :first-child { --- - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose > :last-child { --- - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm p { --- - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm [class~='lead'] { --- - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm blockquote { --- - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h1 { --- - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h2 { --- - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h3 { --- - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h4 { --- - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm img { --- - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm video { --- - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm figure { --- - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm figure > * { --- - - } - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - --- - - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm figure figcaption { --- - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm code { --- - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h2 code { --- - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h3 code { --- - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm pre { --- - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm ol { --- - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm ul { --- - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm li { --- - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm ol > li { --- - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-sm ol > li::before { --- - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm ul > li { --- - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-sm ul > li::before { --- - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm > ul > li p { --- - - } - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - --- - - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm > ul > li > *:first-child { --- - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm > ul > li > *:last-child { --- - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm > ol > li > *:first-child { --- - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm > ol > li > *:last-child { --- - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; + + } + .sm\\\\:prose-sm ul ul, .sm\\\\:prose-sm ul ol, .sm\\\\:prose-sm ol ul, .sm\\\\:prose-sm ol ol { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; - - --- - - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:prose-sm ul ul, .sm\\\\:prose-sm ul ol, .sm\\\\:prose-sm ol ul, .sm\\\\:prose-sm ol ol { - - --- - - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .sm\\\\:prose-sm ul ul, .sm\\\\:prose-sm ul ol, .sm\\\\:prose-sm ol ul, .sm\\\\:prose-sm ol ol { + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; --- - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; + - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm ul ul, .sm\\\\:prose-sm ul ol, .sm\\\\:prose-sm ol ul, .sm\\\\:prose-sm ol ol { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; + + } + + .sm\\\\:prose-sm ul ul, .sm\\\\:prose-sm ul ol, .sm\\\\:prose-sm ol ul, .sm\\\\:prose-sm ol ol { --- - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm hr { --- - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm hr + * { --- - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h2 + * { --- - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h3 + * { --- - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm h4 + * { --- - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm table { --- - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm thead th { --- - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm thead th:first-child { --- - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm thead th:last-child { --- - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm tbody td { --- - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm tbody td:first-child { --- - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm tbody td:last-child { --- - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm > :first-child { --- - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sm > :last-child { --- - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg p { --- - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg [class~='lead'] { --- - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg blockquote { --- - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h1 { --- - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h2 { --- - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h3 { --- - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h4 { --- - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg img { --- - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg video { --- - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg figure { --- - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg figure > * { --- - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg figure figcaption { --- - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg code { --- - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h2 code { --- - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h3 code { --- - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg pre { --- - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg ol { --- - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg ul { --- - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg li { --- - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg ol > li { --- - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-lg ol > li::before { --- - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg ul > li { --- - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-lg ul > li::before { --- - - } - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - --- - - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg > ul > li p { --- - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg > ul > li > *:first-child { --- - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg > ul > li > *:last-child { --- - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg > ol > li > *:first-child { --- - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg > ol > li > *:last-child { --- - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg ul ul, .sm\\\\:prose-lg ul ol, .sm\\\\:prose-lg ol ul, .sm\\\\:prose-lg ol ol { - + margin-top: 0.8888889em; - + margin-bottom: 0.8888889em; --- - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg ul ul, .sm\\\\:prose-lg ul ol, .sm\\\\:prose-lg ol ul, .sm\\\\:prose-lg ol ol { - - --- - - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .sm\\\\:prose-lg ul ul, .sm\\\\:prose-lg ul ol, .sm\\\\:prose-lg ol ul, .sm\\\\:prose-lg ol ol { - - --- - - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .sm\\\\:prose-lg ul ul, .sm\\\\:prose-lg ul ol, .sm\\\\:prose-lg ol ul, .sm\\\\:prose-lg ol ol { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; - - --- - - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + + } + .sm\\\\:prose-lg hr { --- - - } - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg hr + * { --- - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h2 + * { --- - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h3 + * { --- - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg h4 + * { --- - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg table { --- - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg thead th { --- - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg thead th:first-child { --- - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg thead th:last-child { --- - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg tbody td { --- - - } - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - --- - - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg tbody td:first-child { --- - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg tbody td:last-child { --- - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg > :first-child { --- - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lg > :last-child { --- - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl p { --- - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl [class~='lead'] { --- - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl blockquote { --- - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h1 { --- - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h2 { --- - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h3 { --- - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h4 { --- - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl img { --- - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl video { --- - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl figure { --- - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl figure > * { --- - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl figure figcaption { --- - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl code { --- - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h2 code { --- - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h3 code { --- - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - --- - - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl pre { --- - - } - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - --- - - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl ol { --- - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl ul { --- - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl li { --- - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl ol > li { --- - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-xl ol > li::before { --- - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl ul > li { --- - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-xl ul > li::before { --- - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl > ul > li p { --- - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl > ul > li > *:first-child { --- - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl > ul > li > *:last-child { --- - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl > ol > li > *:first-child { --- - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl > ol > li > *:last-child { --- - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; + + } + .sm\\\\:prose-xl ul ul, .sm\\\\:prose-xl ul ol, .sm\\\\:prose-xl ol ul, .sm\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; --- - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:prose-xl ul ul, .sm\\\\:prose-xl ul ol, .sm\\\\:prose-xl ol ul, .sm\\\\:prose-xl ol ol { - - --- - - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl ul ul, .sm\\\\:prose-xl ul ol, .sm\\\\:prose-xl ol ul, .sm\\\\:prose-xl ol ol { - - --- - - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; + + margin-top: 0.8em; + + margin-bottom: 0.8em; + + } + .sm\\\\:prose-xl ul ul, .sm\\\\:prose-xl ul ol, .sm\\\\:prose-xl ol ul, .sm\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; + + } + + .sm\\\\:prose-xl ul ul, .sm\\\\:prose-xl ul ol, .sm\\\\:prose-xl ol ul, .sm\\\\:prose-xl ol ol { --- - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl hr { --- - - } - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl hr + * { --- - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h2 + * { --- - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h3 + * { --- - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl h4 + * { --- - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl table { --- - - } - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - --- - - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl thead th { --- - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl thead th:first-child { --- - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl thead th:last-child { --- - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl tbody td { --- - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl tbody td:first-child { --- - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl tbody td:last-child { --- - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl > :first-child { --- - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-xl > :last-child { --- - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl p { --- - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl [class~='lead'] { --- - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl blockquote { --- - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h1 { --- - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h2 { --- - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h3 { --- - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h4 { --- - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl img { --- - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl video { --- - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl figure { --- - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl figure > * { --- - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl figure figcaption { --- - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl code { --- - - line-height: 1.6; - - margin-top: 1em; - - --- - - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h2 code { --- - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h3 code { --- - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl pre { --- - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl ol { --- - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl ul { --- - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl li { --- - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl ol > li { --- - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-2xl ol > li::before { --- - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl ul > li { --- - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .sm\\\\:prose-2xl ul > li::before { --- - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl > ul > li p { --- - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl > ul > li > *:first-child { --- - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl > ul > li > *:last-child { --- - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl > ol > li > *:first-child { --- - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl > ol > li > *:last-child { --- - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl ul ul, .sm\\\\:prose-2xl ul ol, .sm\\\\:prose-2xl ol ul, .sm\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; - - --- - - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .sm\\\\:prose-2xl ul ul, .sm\\\\:prose-2xl ul ol, .sm\\\\:prose-2xl ol ul, .sm\\\\:prose-2xl ol ol { - - --- - - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.6666667em; + + margin-bottom: 0.6666667em; + + } + .sm\\\\:prose-2xl ul ul, .sm\\\\:prose-2xl ul ol, .sm\\\\:prose-2xl ol ul, .sm\\\\:prose-2xl ol ol { --- - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; + - .sm\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl ul ul, .sm\\\\:prose-2xl ul ol, .sm\\\\:prose-2xl ol ul, .sm\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; - - --- - - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + + } + .sm\\\\:prose-2xl hr { --- - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl hr + * { --- - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h2 + * { --- - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h3 + * { --- - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl h4 + * { --- - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl table { --- - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl thead th { --- - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl thead th:first-child { --- - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl thead th:last-child { --- - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl tbody td { --- - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl tbody td:first-child { --- - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl tbody td:last-child { --- - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl > :first-child { --- - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-2xl > :last-child { --- - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-slate a { --- - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-slate a code { --- - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-zinc a { --- - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-zinc a code { --- - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-neutral a { --- - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-neutral a code { --- - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-stone a { --- - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-stone a code { --- - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-red a { --- - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-red a code { --- - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-orange a { --- - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-orange a code { --- - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-amber a { --- - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-amber a code { --- - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-yellow a { --- - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-yellow a code { --- - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lime a { --- - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-lime a code { --- - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-green a { --- - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-green a code { --- - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-emerald a { --- - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-emerald a code { --- - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-teal a { --- - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-teal a code { --- - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-cyan a { --- - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-cyan a code { --- - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sky a { --- - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-sky a code { --- - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-blue a { --- - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-blue a code { --- - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-indigo a { --- - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-indigo a code { --- - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-violet a { --- - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-violet a code { --- - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-purple a { --- - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-purple a code { --- - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-fuchsia a { --- - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-fuchsia a code { --- - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-pink a { --- - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-pink a code { --- - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-rose a { --- - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + .sm\\\\:prose-rose a code { --- - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - --- - - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose [class~='lead'] { --- - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose a { --- - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + .md\\\\:prose strong { --- - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='A'] { --- - - } - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - --- - - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='a'] { --- - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='A' s] { --- - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='a' s] { --- - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='I'] { --- - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='i'] { --- - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='I' s] { --- - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='i' s] { --- - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol[type='1'] { --- - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol > li { --- - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose ol > li::before { --- - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ul > li { --- - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose ul > li::before { --- - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + .md\\\\:prose hr { --- - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + .md\\\\:prose blockquote { --- - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose blockquote p:first-of-type::before { --- - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + .md\\\\:prose blockquote p:last-of-type::after { --- - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h1 { --- - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h1 strong { --- - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h2 { --- - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h2 strong { --- - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h3 { --- - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h3 strong { --- - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h4 { --- - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h4 strong { --- - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .md\\\\:prose figure figcaption { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose code { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose code::before { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + .md\\\\:prose code::after { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose a code { --- - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + .md\\\\:prose pre { --- - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose pre code { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose pre code::before { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + .md\\\\:prose pre code::after { --- - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + .md\\\\:prose table { --- - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + .md\\\\:prose thead { --- - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + .md\\\\:prose thead th { --- - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + .md\\\\:prose tbody tr { --- - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose tbody tr:last-child { --- - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + .md\\\\:prose tbody td { --- - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose p { --- - - } - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - --- - - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + .md\\\\:prose img { --- - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + .md\\\\:prose video { --- - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + .md\\\\:prose figure { --- - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose figure > * { --- - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h2 code { --- - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h3 code { --- - - } - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - --- - - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ol { --- - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ul { --- - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose li { --- - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose > ul > li p { --- - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose > ul > li > *:first-child { --- - - } - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - --- - - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose > ul > li > *:last-child { --- - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose > ol > li > *:first-child { --- - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose > ol > li > *:last-child { --- - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; + + } + .md\\\\:prose ul ul, .md\\\\:prose ul ol, .md\\\\:prose ol ul, .md\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; --- - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ul ul, .md\\\\:prose ul ol, .md\\\\:prose ol ul, .md\\\\:prose ol ol { --- - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose ul ul, .md\\\\:prose ul ol, .md\\\\:prose ol ul, .md\\\\:prose ol ol { - - --- - - - } - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; + + margin-top: 0.75em; + + margin-bottom: 0.75em; + + } + .md\\\\:prose ul ul, .md\\\\:prose ul ol, .md\\\\:prose ol ul, .md\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; - - --- - - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + + } + .md\\\\:prose hr + * { --- - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h2 + * { --- - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h3 + * { --- - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose h4 + * { --- - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose thead th:first-child { --- - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose thead th:last-child { --- - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose tbody td:first-child { --- - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose tbody td:last-child { --- - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose > :first-child { --- - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose > :last-child { --- - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm p { --- - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm [class~='lead'] { --- - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm blockquote { --- - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h1 { --- - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h2 { --- - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h3 { --- - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h4 { --- - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm img { --- - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm video { --- - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm figure { --- - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm figure > * { --- - - } - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - --- - - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm figure figcaption { --- - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm code { --- - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h2 code { --- - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h3 code { --- - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm pre { --- - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm ol { --- - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm ul { --- - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm li { --- - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm ol > li { --- - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-sm ol > li::before { --- - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm ul > li { --- - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-sm ul > li::before { --- - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm > ul > li p { --- - - } - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - --- - - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm > ul > li > *:first-child { --- - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm > ul > li > *:last-child { --- - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm > ol > li > *:first-child { --- - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm > ol > li > *:last-child { --- - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; + - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm ul ul, .md\\\\:prose-sm ul ol, .md\\\\:prose-sm ol ul, .md\\\\:prose-sm ol ol { - + margin-top: 0.5714286em; - + margin-bottom: 0.5714286em; --- - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm ul ul, .md\\\\:prose-sm ul ol, .md\\\\:prose-sm ol ul, .md\\\\:prose-sm ol ol { - - --- - - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; + + } + .md\\\\:prose-sm ul ul, .md\\\\:prose-sm ul ol, .md\\\\:prose-sm ol ul, .md\\\\:prose-sm ol ol { - - --- - - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; + + } + .md\\\\:prose-sm ul ul, .md\\\\:prose-sm ul ol, .md\\\\:prose-sm ol ul, .md\\\\:prose-sm ol ol { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; - - --- - - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + + } + .md\\\\:prose-sm hr { --- - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm hr + * { --- - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h2 + * { --- - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h3 + * { --- - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm h4 + * { --- - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm table { --- - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm thead th { --- - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm thead th:first-child { --- - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm thead th:last-child { --- - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm tbody td { --- - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm tbody td:first-child { --- - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm tbody td:last-child { --- - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm > :first-child { --- - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sm > :last-child { --- - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg p { --- - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg [class~='lead'] { --- - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg blockquote { --- - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h1 { --- - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h2 { --- - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h3 { --- - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h4 { --- - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg img { --- - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg video { --- - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg figure { --- - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg figure > * { --- - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg figure figcaption { --- - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg code { --- - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h2 code { --- - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h3 code { --- - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg pre { --- - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg ol { --- - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg ul { --- - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg li { --- - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg ol > li { --- - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-lg ol > li::before { --- - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg ul > li { --- - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-lg ul > li::before { --- - - } - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - --- - - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg > ul > li p { --- - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg > ul > li > *:first-child { --- - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg > ul > li > *:last-child { --- - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg > ol > li > *:first-child { --- - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg > ol > li > *:last-child { --- - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg ul ul, .md\\\\:prose-lg ul ol, .md\\\\:prose-lg ol ul, .md\\\\:prose-lg ol ol { - + margin-top: 0.8888889em; - + margin-bottom: 0.8888889em; --- - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg ul ul, .md\\\\:prose-lg ul ol, .md\\\\:prose-lg ol ul, .md\\\\:prose-lg ol ol { - - --- - - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .md\\\\:prose-lg ul ul, .md\\\\:prose-lg ul ol, .md\\\\:prose-lg ol ul, .md\\\\:prose-lg ol ol { - - --- - - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .md\\\\:prose-lg ul ul, .md\\\\:prose-lg ul ol, .md\\\\:prose-lg ol ul, .md\\\\:prose-lg ol ol { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; - - --- - - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + + } + .md\\\\:prose-lg hr { --- - - } - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg hr + * { --- - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h2 + * { --- - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h3 + * { --- - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg h4 + * { --- - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg table { --- - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg thead th { --- - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg thead th:first-child { --- - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg thead th:last-child { --- - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg tbody td { --- - - } - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - --- - - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg tbody td:first-child { --- - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg tbody td:last-child { --- - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg > :first-child { --- - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lg > :last-child { --- - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl p { --- - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl [class~='lead'] { --- - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl blockquote { --- - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h1 { --- - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h2 { --- - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h3 { --- - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h4 { --- - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl img { --- - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl video { --- - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl figure { --- - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl figure > * { --- - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl figure figcaption { --- - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl code { --- - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h2 code { --- - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h3 code { --- - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - --- - - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl pre { --- - - } - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - --- - - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl ol { --- - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl ul { --- - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl li { --- - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl ol > li { --- - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-xl ol > li::before { --- - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl ul > li { --- - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-xl ul > li::before { --- - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl > ul > li p { --- - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl > ul > li > *:first-child { --- - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl > ul > li > *:last-child { --- - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl > ol > li > *:first-child { --- - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl > ol > li > *:last-child { --- - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; + - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl ul ul, .md\\\\:prose-xl ul ol, .md\\\\:prose-xl ol ul, .md\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; - - --- - - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:prose-xl ul ul, .md\\\\:prose-xl ul ol, .md\\\\:prose-xl ol ul, .md\\\\:prose-xl ol ol { - - --- - - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .md\\\\:prose-xl ul ul, .md\\\\:prose-xl ul ol, .md\\\\:prose-xl ol ul, .md\\\\:prose-xl ol ol { - - --- - - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; + + margin-top: 0.8em; + + margin-bottom: 0.8em; + + } + .md\\\\:prose-xl ul ul, .md\\\\:prose-xl ul ol, .md\\\\:prose-xl ol ul, .md\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; + + } + + .md\\\\:prose-xl ul ul, .md\\\\:prose-xl ul ol, .md\\\\:prose-xl ol ul, .md\\\\:prose-xl ol ol { --- - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl hr { --- - - } - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl hr + * { --- - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h2 + * { --- - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h3 + * { --- - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl h4 + * { --- - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl table { --- - - } - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - --- - - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl thead th { --- - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl thead th:first-child { --- - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl thead th:last-child { --- - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl tbody td { --- - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl tbody td:first-child { --- - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl tbody td:last-child { --- - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl > :first-child { --- - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-xl > :last-child { --- - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl p { --- - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl [class~='lead'] { --- - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl blockquote { --- - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h1 { --- - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h2 { --- - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h3 { --- - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h4 { --- - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl img { --- - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl video { --- - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl figure { --- - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl figure > * { --- - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl figure figcaption { --- - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl code { --- - - line-height: 1.6; - - margin-top: 1em; - - --- - - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h2 code { --- - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h3 code { --- - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl pre { --- - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl ol { --- - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl ul { --- - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl li { --- - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl ol > li { --- - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-2xl ol > li::before { --- - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl ul > li { --- - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .md\\\\:prose-2xl ul > li::before { --- - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl > ul > li p { --- - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl > ul > li > *:first-child { --- - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl > ul > li > *:last-child { --- - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl > ol > li > *:first-child { --- - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl > ol > li > *:last-child { --- - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + + } + .md\\\\:prose-2xl ul ul, .md\\\\:prose-2xl ul ol, .md\\\\:prose-2xl ol ul, .md\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; - - --- - - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .md\\\\:prose-2xl ul ul, .md\\\\:prose-2xl ul ol, .md\\\\:prose-2xl ol ul, .md\\\\:prose-2xl ol ol { - - --- - - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.6666667em; + + margin-bottom: 0.6666667em; + + } + .md\\\\:prose-2xl ul ul, .md\\\\:prose-2xl ul ol, .md\\\\:prose-2xl ol ul, .md\\\\:prose-2xl ol ol { + + margin-top: 0.6666667em; + + margin-bottom: 0.6666667em; --- - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; + - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl ul ul, .md\\\\:prose-2xl ul ol, .md\\\\:prose-2xl ol ul, .md\\\\:prose-2xl ol ol { - + margin-top: 0.6666667em; - + margin-bottom: 0.6666667em; --- - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl hr { --- - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl hr + * { --- - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h2 + * { --- - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h3 + * { --- - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl h4 + * { --- - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl table { --- - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl thead th { --- - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl thead th:first-child { --- - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl thead th:last-child { --- - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl tbody td { --- - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl tbody td:first-child { --- - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl tbody td:last-child { --- - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl > :first-child { --- - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-2xl > :last-child { --- - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-slate a { --- - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-slate a code { --- - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-zinc a { --- - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-zinc a code { --- - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-neutral a { --- - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-neutral a code { --- - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-stone a { --- - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-stone a code { --- - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-red a { --- - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-red a code { --- - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-orange a { --- - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-orange a code { --- - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-amber a { --- - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-amber a code { --- - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-yellow a { --- - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-yellow a code { --- - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lime a { --- - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-lime a code { --- - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-green a { --- - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-green a code { --- - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-emerald a { --- - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-emerald a code { --- - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-teal a { --- - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-teal a code { --- - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-cyan a { --- - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-cyan a code { --- - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sky a { --- - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-sky a code { --- - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-blue a { --- - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-blue a code { --- - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-indigo a { --- - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-indigo a code { --- - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-violet a { --- - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-violet a code { --- - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-purple a { --- - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-purple a code { --- - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-fuchsia a { --- - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-fuchsia a code { --- - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-pink a { --- - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-pink a code { --- - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-rose a { --- - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + .md\\\\:prose-rose a code { --- - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - --- - - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose [class~='lead'] { --- - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose a { --- - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose strong { --- - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='A'] { --- - - } - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - --- - - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='a'] { --- - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='A' s] { --- - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='a' s] { --- - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='I'] { --- - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='i'] { --- - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='I' s] { --- - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='i' s] { --- - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol[type='1'] { --- - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol > li { --- - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose ol > li::before { --- - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ul > li { --- - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose ul > li::before { --- - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose hr { --- - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose blockquote { --- - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose blockquote p:first-of-type::before { --- - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + .lg\\\\:prose blockquote p:last-of-type::after { --- - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h1 { --- - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h1 strong { --- - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h2 { --- - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h2 strong { --- - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h3 { --- - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h3 strong { --- - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h4 { --- - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h4 strong { --- - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose figure figcaption { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose code { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose code::before { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + .lg\\\\:prose code::after { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose a code { --- - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose pre { --- - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose pre code { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose pre code::before { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + .lg\\\\:prose pre code::after { --- - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose table { --- - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose thead { --- - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose thead th { --- - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose tbody tr { --- - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose tbody tr:last-child { --- - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose tbody td { --- - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose p { --- - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose img { --- - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose video { --- - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose figure { --- - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose figure > * { --- - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h2 code { --- - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h3 code { --- - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ol { --- - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ul { --- - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose li { --- - - } - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - --- - - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose > ul > li p { --- - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose > ul > li > *:first-child { --- - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose > ul > li > *:last-child { --- - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose > ol > li > *:first-child { --- - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose > ol > li > *:last-child { --- - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; + - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ul ul, .lg\\\\:prose ul ol, .lg\\\\:prose ol ul, .lg\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; - - --- - - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .lg\\\\:prose ul ul, .lg\\\\:prose ul ol, .lg\\\\:prose ol ul, .lg\\\\:prose ol ol { --- - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose ul ul, .lg\\\\:prose ul ol, .lg\\\\:prose ol ul, .lg\\\\:prose ol ol { - - --- - - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; + + margin-top: 0.75em; + + margin-bottom: 0.75em; + + } + .lg\\\\:prose ul ul, .lg\\\\:prose ul ol, .lg\\\\:prose ol ul, .lg\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; - - --- - - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + + } + .lg\\\\:prose hr + * { --- - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h2 + * { --- - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h3 + * { --- - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose h4 + * { --- - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose thead th:first-child { --- - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose thead th:last-child { --- - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose tbody td:first-child { --- - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose tbody td:last-child { --- - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose > :first-child { --- - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose > :last-child { --- - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm p { --- - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm [class~='lead'] { --- - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm blockquote { --- - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h1 { --- - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h2 { --- - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h3 { --- - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h4 { --- - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm img { --- - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm video { --- - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm figure { --- - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm figure > * { --- - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm figure figcaption { --- - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm code { --- - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h2 code { --- - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h3 code { --- - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm pre { --- - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm ol { --- - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm ul { --- - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm li { --- - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm ol > li { --- - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-sm ol > li::before { --- - - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - --- - - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm ul > li { --- - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-sm ul > li::before { --- - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm > ul > li p { --- - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm > ul > li > *:first-child { --- - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm > ul > li > *:last-child { --- - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm > ol > li > *:first-child { --- - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm > ol > li > *:last-child { --- - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; + - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm ul ul, .lg\\\\:prose-sm ul ol, .lg\\\\:prose-sm ol ul, .lg\\\\:prose-sm ol ol { - + margin-top: 0.5714286em; - + margin-bottom: 0.5714286em; --- - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm ul ul, .lg\\\\:prose-sm ul ol, .lg\\\\:prose-sm ol ul, .lg\\\\:prose-sm ol ol { - - --- - - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; + + } + .lg\\\\:prose-sm ul ul, .lg\\\\:prose-sm ul ol, .lg\\\\:prose-sm ol ul, .lg\\\\:prose-sm ol ol { - - --- - - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; + + } + .lg\\\\:prose-sm ul ul, .lg\\\\:prose-sm ul ol, .lg\\\\:prose-sm ol ul, .lg\\\\:prose-sm ol ol { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; - - --- - - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + + } + .lg\\\\:prose-sm hr { --- - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm hr + * { --- - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h2 + * { --- - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h3 + * { --- - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm h4 + * { --- - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm table { --- - - } - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - --- - - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm thead th { --- - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm thead th:first-child { --- - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm thead th:last-child { --- - - } - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - --- - - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm tbody td { --- - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm tbody td:first-child { --- - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm tbody td:last-child { --- - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm > :first-child { --- - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sm > :last-child { --- - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - --- - - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg p { --- - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg [class~='lead'] { --- - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg blockquote { --- - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h1 { --- - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h2 { --- - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h3 { --- - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h4 { --- - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg img { --- - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg video { --- - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg figure { --- - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg figure > * { --- - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg figure figcaption { --- - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg code { --- - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h2 code { --- - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h3 code { --- - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg pre { --- - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg ol { --- - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg ul { --- - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg li { --- - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg ol > li { --- - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-lg ol > li::before { --- - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg ul > li { --- - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-lg ul > li::before { --- - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg > ul > li p { --- - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg > ul > li > *:first-child { --- - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg > ul > li > *:last-child { --- - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg > ol > li > *:first-child { --- - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg > ol > li > *:last-child { --- - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg ul ul, .lg\\\\:prose-lg ul ol, .lg\\\\:prose-lg ol ul, .lg\\\\:prose-lg ol ol { - + margin-top: 0.8888889em; - + margin-bottom: 0.8888889em; --- - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg ul ul, .lg\\\\:prose-lg ul ol, .lg\\\\:prose-lg ol ul, .lg\\\\:prose-lg ol ol { - - --- - - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .lg\\\\:prose-lg ul ul, .lg\\\\:prose-lg ul ol, .lg\\\\:prose-lg ol ul, .lg\\\\:prose-lg ol ol { - - --- - - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .lg\\\\:prose-lg ul ul, .lg\\\\:prose-lg ul ol, .lg\\\\:prose-lg ol ul, .lg\\\\:prose-lg ol ol { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; - - --- - - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + + } + .lg\\\\:prose-lg hr { --- - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg hr + * { --- - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h2 + * { --- - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h3 + * { --- - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg h4 + * { --- - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg table { --- - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg thead th { --- - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg thead th:first-child { --- - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg thead th:last-child { --- - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg tbody td { --- - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg tbody td:first-child { --- - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg tbody td:last-child { --- - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg > :first-child { --- - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lg > :last-child { --- - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl p { --- - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl [class~='lead'] { --- - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl blockquote { --- - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h1 { --- - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h2 { --- - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h3 { --- - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h4 { --- - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl img { --- - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl video { --- - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl figure { --- - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl figure > * { --- - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl figure figcaption { --- - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl code { --- - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h2 code { --- - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h3 code { --- - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - --- - - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl pre { --- - - } - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - --- - - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl ol { --- - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl ul { --- - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl li { --- - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl ol > li { --- - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-xl ol > li::before { --- - - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - --- - - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl ul > li { --- - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-xl ul > li::before { --- - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl > ul > li p { --- - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl > ul > li > *:first-child { --- - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl > ul > li > *:last-child { --- - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl > ol > li > *:first-child { --- - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl > ol > li > *:last-child { --- - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; + + } + .lg\\\\:prose-xl ul ul, .lg\\\\:prose-xl ul ol, .lg\\\\:prose-xl ol ul, .lg\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; --- - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:prose-xl ul ul, .lg\\\\:prose-xl ul ol, .lg\\\\:prose-xl ol ul, .lg\\\\:prose-xl ol ol { + + margin-top: 0.8em; + + margin-bottom: 0.8em; + + } + .lg\\\\:prose-xl ul ul, .lg\\\\:prose-xl ul ol, .lg\\\\:prose-xl ol ul, .lg\\\\:prose-xl ol ol { --- - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:prose-xl ul ul, .lg\\\\:prose-xl ul ol, .lg\\\\:prose-xl ol ul, .lg\\\\:prose-xl ol ol { - - --- - - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; + - .lg\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl ul ul, .lg\\\\:prose-xl ul ol, .lg\\\\:prose-xl ol ul, .lg\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; - - --- - - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + + } + .lg\\\\:prose-xl hr { --- - - } - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl hr + * { --- - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h2 + * { --- - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h3 + * { --- - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl h4 + * { --- - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl table { --- - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl thead th { --- - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl thead th:first-child { --- - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl thead th:last-child { --- - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl tbody td { --- - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl tbody td:first-child { --- - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl tbody td:last-child { --- - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl > :first-child { --- - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-xl > :last-child { --- - - } - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - --- - - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl p { --- - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl [class~='lead'] { --- - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl blockquote { --- - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h1 { --- - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h2 { --- - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h3 { --- - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h4 { --- - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl img { --- - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl video { --- - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl figure { --- - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl figure > * { --- - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl figure figcaption { --- - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl code { --- - - line-height: 1.6; - - margin-top: 1em; - - --- - - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h2 code { --- - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h3 code { --- - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl pre { --- - - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - --- - - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl ol { --- - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl ul { --- - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl li { --- - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl ol > li { --- - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - --- - - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-2xl ol > li::before { --- - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl ul > li { --- - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .lg\\\\:prose-2xl ul > li::before { --- - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl > ul > li p { --- - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl > ul > li > *:first-child { --- - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl > ul > li > *:last-child { --- - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl > ol > li > *:first-child { --- - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl > ol > li > *:last-child { --- - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + + } + .lg\\\\:prose-2xl ul ul, .lg\\\\:prose-2xl ul ol, .lg\\\\:prose-2xl ol ul, .lg\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; --- - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl ul ul, .lg\\\\:prose-2xl ul ol, .lg\\\\:prose-2xl ol ul, .lg\\\\:prose-2xl ol ol { --- - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl ul ul, .lg\\\\:prose-2xl ul ol, .lg\\\\:prose-2xl ol ul, .lg\\\\:prose-2xl ol ol { - - --- - - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; + + margin-top: 0.6666667em; + + margin-bottom: 0.6666667em; + + } + .lg\\\\:prose-2xl ul ul, .lg\\\\:prose-2xl ul ol, .lg\\\\:prose-2xl ol ul, .lg\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; - - --- - - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + + } + .lg\\\\:prose-2xl hr { --- - - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl hr + * { --- - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h2 + * { --- - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h3 + * { --- - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl h4 + * { --- - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl table { --- - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl thead th { --- - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl thead th:first-child { --- - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl thead th:last-child { --- - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl tbody td { --- - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl tbody td:first-child { --- - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl tbody td:last-child { --- - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl > :first-child { --- - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-2xl > :last-child { --- - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-slate a { --- - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-slate a code { --- - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-zinc a { --- - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-zinc a code { --- - - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - --- - - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-neutral a { --- - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-neutral a code { --- - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-stone a { --- - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-stone a code { --- - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-red a { --- - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-red a code { --- - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-orange a { --- - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-orange a code { --- - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-amber a { --- - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-amber a code { --- - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-yellow a { --- - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-yellow a code { --- - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lime a { --- - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-lime a code { --- - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-green a { --- - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-green a code { --- - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-emerald a { --- - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-emerald a code { --- - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-teal a { --- - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-teal a code { --- - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-cyan a { --- - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-cyan a code { --- - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sky a { --- - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-sky a code { --- - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-blue a { --- - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-blue a code { --- - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-indigo a { --- - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-indigo a code { --- - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-violet a { --- - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-violet a code { --- - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-purple a { --- - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-purple a code { --- - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-fuchsia a { --- - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-fuchsia a code { --- - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-pink a { --- - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-pink a code { --- - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-rose a { --- - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + .lg\\\\:prose-rose a code { --- - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - --- - - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose [class~='lead'] { --- - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose a { --- - - } - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - --- - - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose strong { --- - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='A'] { --- - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='a'] { --- - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='A' s] { --- - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='a' s] { --- - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='I'] { --- - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='i'] { --- - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='I' s] { --- - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='i' s] { --- - - } - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - --- - - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol[type='1'] { --- - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol > li { --- - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose ol > li::before { --- - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ul > li { --- - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose ul > li::before { --- - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose hr { --- - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose blockquote { --- - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose blockquote p:first-of-type::before { --- - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + .xl\\\\:prose blockquote p:last-of-type::after { --- - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h1 { --- - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h1 strong { --- - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h2 { --- - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h2 strong { --- - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h3 { --- - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h3 strong { --- - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h4 { --- - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h4 strong { --- - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose figure figcaption { --- - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose code { --- - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose code::before { --- - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + .xl\\\\:prose code::after { --- - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose a code { --- - - } - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - --- - - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose pre { --- - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose pre code { --- - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose pre code::before { --- - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + .xl\\\\:prose pre code::after { --- - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose table { --- - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose thead { --- - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose thead th { --- - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose tbody tr { --- - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose tbody tr:last-child { --- - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose tbody td { --- - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - --- - - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose p { --- - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose img { --- - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose video { --- - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose figure { --- - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose figure > * { --- - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h2 code { --- - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h3 code { --- - - } - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - --- - - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ol { --- - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ul { --- - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose li { --- - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose > ul > li p { --- - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose > ul > li > *:first-child { --- - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose > ul > li > *:last-child { --- - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose > ol > li > *:first-child { --- - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose > ol > li > *:last-child { --- - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; + - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose ul ul, .xl\\\\:prose ul ol, .xl\\\\:prose ol ul, .xl\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; - - --- - - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:prose ul ul, .xl\\\\:prose ul ol, .xl\\\\:prose ol ul, .xl\\\\:prose ol ol { - - --- - - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .xl\\\\:prose ul ul, .xl\\\\:prose ul ol, .xl\\\\:prose ol ul, .xl\\\\:prose ol ol { - - --- - - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; + + margin-top: 0.75em; + + margin-bottom: 0.75em; + + } + .xl\\\\:prose ul ul, .xl\\\\:prose ul ol, .xl\\\\:prose ol ul, .xl\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; + + } + + .xl\\\\:prose ul ul, .xl\\\\:prose ul ol, .xl\\\\:prose ol ul, .xl\\\\:prose ol ol { --- - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose hr + * { --- - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h2 + * { --- - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h3 + * { --- - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose h4 + * { --- - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose thead th:first-child { --- - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose thead th:last-child { --- - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose tbody td:first-child { --- - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose tbody td:last-child { --- - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose > :first-child { --- - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose > :last-child { --- - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm p { --- - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm [class~='lead'] { --- - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm blockquote { --- - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h1 { --- - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h2 { --- - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h3 { --- - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h4 { --- - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm img { --- - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm video { --- - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm figure { --- - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm figure > * { --- - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm figure figcaption { --- - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm code { --- - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h2 code { --- - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h3 code { --- - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm pre { --- - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm ol { --- - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm ul { --- - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm li { --- - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm ol > li { --- - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-sm ol > li::before { --- - - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - --- - - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm ul > li { --- - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-sm ul > li::before { --- - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm > ul > li p { --- - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm > ul > li > *:first-child { --- - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm > ul > li > *:last-child { --- - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm > ol > li > *:first-child { --- - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm > ol > li > *:last-child { --- - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; + - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm ul ul, .xl\\\\:prose-sm ul ol, .xl\\\\:prose-sm ol ul, .xl\\\\:prose-sm ol ol { - + margin-top: 0.5714286em; - + margin-bottom: 0.5714286em; --- - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm ul ul, .xl\\\\:prose-sm ul ol, .xl\\\\:prose-sm ol ul, .xl\\\\:prose-sm ol ol { - - --- - - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; + + } + .xl\\\\:prose-sm ul ul, .xl\\\\:prose-sm ul ol, .xl\\\\:prose-sm ol ul, .xl\\\\:prose-sm ol ol { - - --- - - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; + + } + .xl\\\\:prose-sm ul ul, .xl\\\\:prose-sm ul ol, .xl\\\\:prose-sm ol ul, .xl\\\\:prose-sm ol ol { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; - - --- - - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + + } + .xl\\\\:prose-sm hr { --- - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm hr + * { --- - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h2 + * { --- - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h3 + * { --- - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm h4 + * { --- - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm table { --- - - } - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - --- - - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm thead th { --- - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm thead th:first-child { --- - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm thead th:last-child { --- - - } - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - --- - - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm tbody td { --- - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm tbody td:first-child { --- - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm tbody td:last-child { --- - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm > :first-child { --- - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sm > :last-child { --- - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - --- - - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg p { --- - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg [class~='lead'] { --- - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg blockquote { --- - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h1 { --- - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h2 { --- - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h3 { --- - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h4 { --- - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg img { --- - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg video { --- - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg figure { --- - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg figure > * { --- - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg figure figcaption { --- - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg code { --- - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h2 code { --- - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h3 code { --- - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg pre { --- - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg ol { --- - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg ul { --- - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg li { --- - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg ol > li { --- - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-lg ol > li::before { --- - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg ul > li { --- - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-lg ul > li::before { --- - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg > ul > li p { --- - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg > ul > li > *:first-child { --- - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg > ul > li > *:last-child { --- - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg > ol > li > *:first-child { --- - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg > ol > li > *:last-child { --- - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg ul ul, .xl\\\\:prose-lg ul ol, .xl\\\\:prose-lg ol ul, .xl\\\\:prose-lg ol ol { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; - - --- - - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:prose-lg ul ul, .xl\\\\:prose-lg ul ol, .xl\\\\:prose-lg ol ul, .xl\\\\:prose-lg ol ol { - - --- - - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .xl\\\\:prose-lg ul ul, .xl\\\\:prose-lg ul ol, .xl\\\\:prose-lg ol ul, .xl\\\\:prose-lg ol ol { - - --- - - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .xl\\\\:prose-lg ul ul, .xl\\\\:prose-lg ul ol, .xl\\\\:prose-lg ol ul, .xl\\\\:prose-lg ol ol { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; + + } + + .xl\\\\:prose-lg ul ul, .xl\\\\:prose-lg ul ol, .xl\\\\:prose-lg ol ul, .xl\\\\:prose-lg ol ol { --- - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg hr { --- - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg hr + * { --- - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h2 + * { --- - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h3 + * { --- - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg h4 + * { --- - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg table { --- - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg thead th { --- - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg thead th:first-child { --- - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg thead th:last-child { --- - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg tbody td { --- - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg tbody td:first-child { --- - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg tbody td:last-child { --- - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg > :first-child { --- - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lg > :last-child { --- - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - --- - - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl p { --- - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl [class~='lead'] { --- - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl blockquote { --- - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h1 { --- - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h2 { --- - - } - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - --- - - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h3 { --- - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h4 { --- - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl img { --- - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl video { --- - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl figure { --- - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl figure > * { --- - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl figure figcaption { --- - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl code { --- - - line-height: 1.5555556; - - margin-top: 1em; - - --- - - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h2 code { --- - - } - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - --- - - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h3 code { --- - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - } - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl pre { --- - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl ol { --- - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl ul { --- - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl li { --- - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl ol > li { --- - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-xl ol > li::before { --- - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl ul > li { --- - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-xl ul > li::before { --- - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl > ul > li p { --- - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl > ul > li > *:first-child { --- - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl > ul > li > *:last-child { --- - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl > ol > li > *:first-child { --- - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl > ol > li > *:last-child { --- - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; + - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl ul ul, .xl\\\\:prose-xl ul ol, .xl\\\\:prose-xl ol ul, .xl\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; - - --- - - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .xl\\\\:prose-xl ul ul, .xl\\\\:prose-xl ul ol, .xl\\\\:prose-xl ol ul, .xl\\\\:prose-xl ol ol { - - --- - - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.8em; + + margin-bottom: 0.8em; + + } + .xl\\\\:prose-xl ul ul, .xl\\\\:prose-xl ul ol, .xl\\\\:prose-xl ol ul, .xl\\\\:prose-xl ol ol { --- - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; + - .xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl ul ul, .xl\\\\:prose-xl ul ol, .xl\\\\:prose-xl ol ul, .xl\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; - - --- - - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + + } + .xl\\\\:prose-xl hr { --- - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl hr + * { --- - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h2 + * { --- - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h3 + * { --- - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl h4 + * { --- - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl table { --- - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl thead th { --- - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl thead th:first-child { --- - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl thead th:last-child { --- - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl tbody td { --- - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl tbody td:first-child { --- - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl tbody td:last-child { --- - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl > :first-child { --- - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-xl > :last-child { --- - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl p { --- - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl [class~='lead'] { --- - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl blockquote { --- - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h1 { --- - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h2 { --- - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h3 { --- - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h4 { --- - - } - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - --- - - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl img { --- - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl video { --- - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl figure { --- - - } - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - --- - - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl figure > * { --- - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl figure figcaption { --- - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl code { --- - - line-height: 1.6; - - margin-top: 1em; - - --- - - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h2 code { --- - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h3 code { --- - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl pre { --- - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl ol { --- - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl ul { --- - - } - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - --- - - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl li { --- - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl ol > li { --- - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-2xl ol > li::before { --- - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl ul > li { --- - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .xl\\\\:prose-2xl ul > li::before { --- - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl > ul > li p { --- - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl > ul > li > *:first-child { --- - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl > ul > li > *:last-child { --- - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl > ol > li > *:first-child { --- - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl > ol > li > *:last-child { --- - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl ul ul, .xl\\\\:prose-2xl ul ol, .xl\\\\:prose-2xl ol ul, .xl\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; - - --- - - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .xl\\\\:prose-2xl ul ul, .xl\\\\:prose-2xl ul ol, .xl\\\\:prose-2xl ol ul, .xl\\\\:prose-2xl ol ol { --- - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl ul ul, .xl\\\\:prose-2xl ul ol, .xl\\\\:prose-2xl ol ul, .xl\\\\:prose-2xl ol ol { - - --- - - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; + + margin-top: 0.6666667em; + + margin-bottom: 0.6666667em; + + } + .xl\\\\:prose-2xl ul ul, .xl\\\\:prose-2xl ul ol, .xl\\\\:prose-2xl ol ul, .xl\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; - - --- - - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + + } + .xl\\\\:prose-2xl hr { --- - - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl hr + * { --- - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h2 + * { --- - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h3 + * { --- - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl h4 + * { --- - - } - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - --- - - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl table { --- - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl thead th { --- - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl thead th:first-child { --- - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl thead th:last-child { --- - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl tbody td { --- - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl tbody td:first-child { --- - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl tbody td:last-child { --- - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl > :first-child { --- - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-2xl > :last-child { --- - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-slate a { --- - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-slate a code { --- - - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - --- - - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-zinc a { --- - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-zinc a code { --- - - } - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - --- - - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-neutral a { --- - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-neutral a code { --- - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-stone a { --- - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-stone a code { --- - - } - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - --- - - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-red a { --- - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-red a code { --- - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-orange a { --- - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-orange a code { --- - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-amber a { --- - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-amber a code { --- - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-yellow a { --- - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-yellow a code { --- - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lime a { --- - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-lime a code { --- - - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - --- - - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-green a { --- - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-green a code { --- - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-emerald a { --- - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-emerald a code { --- - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-teal a { --- - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-teal a code { --- - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-cyan a { --- - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-cyan a code { --- - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sky a { --- - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-sky a code { --- - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-blue a { --- - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-blue a code { --- - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-indigo a { --- - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-indigo a code { --- - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-violet a { --- - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-violet a code { --- - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-purple a { --- - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-purple a code { --- - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-fuchsia a { --- - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-fuchsia a code { --- - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-pink a { --- - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-pink a code { --- - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-rose a { --- - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + .xl\\\\:prose-rose a code { --- - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - --- - - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose [class~='lead'] { --- - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose a { --- - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose strong { --- - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='A'] { --- - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='a'] { --- - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='A' s] { --- - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='a' s] { --- - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='I'] { --- - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='i'] { --- - - } - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='I' s] { --- - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='i' s] { --- - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol[type='1'] { --- - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol > li { --- - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose ol > li::before { --- - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ul > li { --- - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose ul > li::before { --- - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose hr { --- - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose blockquote { --- - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose blockquote p:first-of-type::before { --- - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + .\\\\32xl\\\\:prose blockquote p:last-of-type::after { --- - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h1 { --- - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h1 strong { --- - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h2 { --- - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h2 strong { --- - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h3 { --- - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h3 strong { --- - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h4 { --- - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h4 strong { --- - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose figure figcaption { --- - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose code { --- - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose code::before { --- - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + .\\\\32xl\\\\:prose code::after { --- - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose a code { --- - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose pre { --- - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose pre code { --- - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose pre code::before { --- - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + .\\\\32xl\\\\:prose pre code::after { --- - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose table { --- - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose thead { --- - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose thead th { --- - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose tbody tr { --- - - } - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - --- - - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose tbody tr:last-child { --- - - } - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - --- - - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose tbody td { --- - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose p { --- - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose img { --- - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose video { --- - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose figure { --- - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose figure > * { --- - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h2 code { --- - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h3 code { --- - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ol { --- - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ul { --- - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose li { --- - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose > ul > li p { --- - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose > ul > li > *:first-child { --- - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose > ul > li > *:last-child { --- - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose > ol > li > *:first-child { --- - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose > ol > li > *:last-child { --- - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; + - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ul ul, .\\\\32xl\\\\:prose ul ol, .\\\\32xl\\\\:prose ol ul, .\\\\32xl\\\\:prose ol ol { - + margin-top: 0.75em; - + margin-bottom: 0.75em; --- - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose ul ul, .\\\\32xl\\\\:prose ul ol, .\\\\32xl\\\\:prose ol ul, .\\\\32xl\\\\:prose ol ol { - - --- - - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.75em; + + margin-bottom: 0.75em; + + } + .\\\\32xl\\\\:prose ul ul, .\\\\32xl\\\\:prose ul ol, .\\\\32xl\\\\:prose ol ul, .\\\\32xl\\\\:prose ol ol { - - --- - - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; + + margin-top: 0.75em; + + margin-bottom: 0.75em; + + } + .\\\\32xl\\\\:prose ul ul, .\\\\32xl\\\\:prose ul ol, .\\\\32xl\\\\:prose ol ul, .\\\\32xl\\\\:prose ol ol { + margin-top: 0.75em; + margin-bottom: 0.75em; - - --- - - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { + + } + .\\\\32xl\\\\:prose hr + * { --- - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h2 + * { --- - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h3 + * { --- - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose h4 + * { --- - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose thead th:first-child { --- - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose thead th:last-child { --- - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose tbody td:first-child { --- - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose tbody td:last-child { --- - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose > :first-child { --- - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose > :last-child { --- - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - --- - - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm p { --- - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm [class~='lead'] { --- - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm blockquote { --- - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h1 { --- - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h2 { --- - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h3 { --- - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h4 { --- - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm img { --- - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm video { --- - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm figure { --- - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm figure > * { --- - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm figure figcaption { --- - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm code { --- - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h2 code { --- - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h3 code { --- - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm pre { --- - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm ol { --- - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm ul { --- - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm li { --- - - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - --- - - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm ol > li { --- - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-sm ol > li::before { --- - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm ul > li { --- - - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-sm ul > li::before { --- - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm > ul > li p { --- - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm > ul > li > *:first-child { --- - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm > ul > li > *:last-child { --- - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm > ol > li > *:first-child { --- - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm > ol > li > *:last-child { --- - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; + - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm ul ul, .\\\\32xl\\\\:prose-sm ul ol, .\\\\32xl\\\\:prose-sm ol ul, .\\\\32xl\\\\:prose-sm ol ol { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + } + .\\\\32xl\\\\:prose-sm ul ul, .\\\\32xl\\\\:prose-sm ul ol, .\\\\32xl\\\\:prose-sm ol ul, .\\\\32xl\\\\:prose-sm ol ol { --- - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm ul ul, .\\\\32xl\\\\:prose-sm ul ol, .\\\\32xl\\\\:prose-sm ol ul, .\\\\32xl\\\\:prose-sm ol ol { - - --- - - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; + + margin-top: 0.5714286em; + + margin-bottom: 0.5714286em; + + } + .\\\\32xl\\\\:prose-sm ul ul, .\\\\32xl\\\\:prose-sm ul ol, .\\\\32xl\\\\:prose-sm ol ul, .\\\\32xl\\\\:prose-sm ol ol { + margin-top: 0.5714286em; + margin-bottom: 0.5714286em; - - --- - - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + + } + .\\\\32xl\\\\:prose-sm hr { --- - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm hr + * { --- - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h2 + * { --- - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h3 + * { --- - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm h4 + * { --- - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm table { --- - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm thead th { --- - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm thead th:first-child { --- - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm thead th:last-child { --- - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm tbody td { --- - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm tbody td:first-child { --- - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm tbody td:last-child { --- - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm > :first-child { --- - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sm > :last-child { --- - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - --- - - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg p { --- - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg [class~='lead'] { --- - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg blockquote { --- - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h1 { --- - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h2 { --- - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h3 { --- - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h4 { --- - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg img { --- - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg video { --- - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg figure { --- - - } - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - --- - - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg figure > * { --- - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg figure figcaption { --- - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg code { --- - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h2 code { --- - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h3 code { --- - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg pre { --- - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg ol { --- - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg ul { --- - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg li { --- - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg ol > li { --- - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-lg ol > li::before { --- - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg ul > li { --- - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-lg ul > li::before { --- - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg > ul > li p { --- - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg > ul > li > *:first-child { --- - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg > ul > li > *:last-child { --- - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg > ol > li > *:first-child { --- - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg > ol > li > *:last-child { --- - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + + } + .\\\\32xl\\\\:prose-lg ul ul, .\\\\32xl\\\\:prose-lg ul ol, .\\\\32xl\\\\:prose-lg ol ul, .\\\\32xl\\\\:prose-lg ol ol { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; --- - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg ul ul, .\\\\32xl\\\\:prose-lg ul ol, .\\\\32xl\\\\:prose-lg ol ul, .\\\\32xl\\\\:prose-lg ol ol { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.8888889em; + + margin-bottom: 0.8888889em; + + } + .\\\\32xl\\\\:prose-lg ul ul, .\\\\32xl\\\\:prose-lg ul ol, .\\\\32xl\\\\:prose-lg ol ul, .\\\\32xl\\\\:prose-lg ol ol { --- - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; + - .\\\\32xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg ul ul, .\\\\32xl\\\\:prose-lg ul ol, .\\\\32xl\\\\:prose-lg ol ul, .\\\\32xl\\\\:prose-lg ol ol { + margin-top: 0.8888889em; + margin-bottom: 0.8888889em; - - --- - - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + + } + .\\\\32xl\\\\:prose-lg hr { --- - - } - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg hr + * { --- - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h2 + * { --- - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h3 + * { --- - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg h4 + * { --- - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg table { --- - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg thead th { --- - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg thead th:first-child { --- - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg thead th:last-child { --- - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg tbody td { --- - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg tbody td:first-child { --- - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg tbody td:last-child { --- - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg > :first-child { --- - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lg > :last-child { --- - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - --- - - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl p { --- - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl [class~='lead'] { --- - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl blockquote { --- - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h1 { --- - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h2 { --- - - } - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h3 { --- - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h4 { --- - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl img { --- - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl video { --- - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl figure { --- - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl figure > * { --- - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl figure figcaption { --- - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl code { --- - - line-height: 1.5555556; - - margin-top: 1em; - - --- - - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h2 code { --- - - } - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h3 code { --- - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl pre { --- - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl ol { --- - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl ul { --- - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl li { --- - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl ol > li { --- - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-xl ol > li::before { --- - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl ul > li { --- - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-xl ul > li::before { --- - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl > ul > li p { --- - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl > ul > li > *:first-child { --- - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl > ul > li > *:last-child { --- - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl > ol > li > *:first-child { --- - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl > ol > li > *:last-child { --- - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; + - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl ul ul, .\\\\32xl\\\\:prose-xl ul ol, .\\\\32xl\\\\:prose-xl ol ul, .\\\\32xl\\\\:prose-xl ol ol { - + margin-top: 0.8em; - + margin-bottom: 0.8em; --- - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl ul ul, .\\\\32xl\\\\:prose-xl ul ol, .\\\\32xl\\\\:prose-xl ol ul, .\\\\32xl\\\\:prose-xl ol ol { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + + margin-top: 0.8em; + + margin-bottom: 0.8em; + + } + .\\\\32xl\\\\:prose-xl ul ul, .\\\\32xl\\\\:prose-xl ul ol, .\\\\32xl\\\\:prose-xl ol ul, .\\\\32xl\\\\:prose-xl ol ol { - - --- - - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; + + margin-top: 0.8em; + + margin-bottom: 0.8em; + + } + .\\\\32xl\\\\:prose-xl ul ul, .\\\\32xl\\\\:prose-xl ul ol, .\\\\32xl\\\\:prose-xl ol ul, .\\\\32xl\\\\:prose-xl ol ol { + margin-top: 0.8em; + margin-bottom: 0.8em; - - --- - - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + + } + .\\\\32xl\\\\:prose-xl hr { --- - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl hr + * { --- - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h2 + * { --- - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h3 + * { --- - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl h4 + * { --- - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl table { --- - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl thead th { --- - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl thead th:first-child { --- - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl thead th:last-child { --- - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl tbody td { --- - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl tbody td:first-child { --- - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl tbody td:last-child { --- - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl > :first-child { --- - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-xl > :last-child { --- - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl p { --- - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl [class~='lead'] { --- - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl blockquote { --- - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl h1 { --- - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl h2 { --- - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl h3 { --- - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl h4 { --- - - } - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - --- - - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl img { --- - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl video { --- - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl figure { --- - - } - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - --- - - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl figure > * { --- - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl figure figcaption { --- - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl code { --- - - line-height: 1.6; - - margin-top: 1em; + - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:prose-2xl h2 code { --- - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:prose-2xl h2 code { + - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:prose-2xl h3 code { --- - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:prose-2xl h3 code { + - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:prose-2xl pre { --- - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:prose-2xl pre { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl ol { --- - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl ul { --- - - } - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - --- - - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl li { --- - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl ol > li { --- - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-2xl ol > li::before { --- - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl ul > li { --- - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + .\\\\32xl\\\\:prose-2xl ul > li::before { --- - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl > ul > li p { --- - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl > ul > li > *:first-child { --- - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl > ul > li > *:last-child { --- - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl > ol > li > *:first-child { --- - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl > ol > li > *:last-child { --- - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; + + } + .\\\\32xl\\\\:prose-2xl ul ul, .\\\\32xl\\\\:prose-2xl ul ol, .\\\\32xl\\\\:prose-2xl ol ul, .\\\\32xl\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; --- - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl ul ul, .\\\\32xl\\\\:prose-2xl ul ol, .\\\\32xl\\\\:prose-2xl ol ul, .\\\\32xl\\\\:prose-2xl ol ol { --- - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl ul ul, .\\\\32xl\\\\:prose-2xl ul ol, .\\\\32xl\\\\:prose-2xl ol ul, .\\\\32xl\\\\:prose-2xl ol ol { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; + + margin-top: 0.6666667em; + + margin-bottom: 0.6666667em; + + } + .\\\\32xl\\\\:prose-2xl ul ul, .\\\\32xl\\\\:prose-2xl ul ol, .\\\\32xl\\\\:prose-2xl ol ul, .\\\\32xl\\\\:prose-2xl ol ol { + margin-top: 0.6666667em; + margin-bottom: 0.6666667em; - - --- - - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + + } + .\\\\32xl\\\\:prose-2xl hr { --- - - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl hr + * { --- - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl h2 + * { --- - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl h3 + * { --- - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl h4 + * { --- - - } - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - --- - - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl table { --- - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl thead th { --- - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl thead th:first-child { --- - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl thead th:last-child { --- - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl tbody td { --- - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl tbody td:first-child { --- - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl tbody td:last-child { --- - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl > :first-child { --- - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-2xl > :last-child { --- - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - --- - - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-slate a { --- - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-slate a code { --- - - } - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - --- - - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-zinc a { --- - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-zinc a code { --- - - } - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - --- - - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-neutral a { --- - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-neutral a code { --- - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-stone a { --- - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-stone a code { --- - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-red a { --- - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-red a code { --- - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-orange a { --- - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-orange a code { --- - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-amber a { --- - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-amber a code { --- - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-yellow a { --- - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-yellow a code { --- - - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - --- - - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lime a { --- - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-lime a code { --- - - } - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - --- - - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-green a { --- - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-green a code { --- - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-emerald a { --- - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-emerald a code { --- - - } - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - --- - - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-teal a { --- - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-teal a code { --- - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-cyan a { --- - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-cyan a code { --- - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sky a { --- - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-sky a code { --- - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-blue a { --- - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-blue a code { --- - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-indigo a { --- - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-indigo a code { --- - - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - --- - - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-violet a { --- - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-violet a code { --- - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-purple a { --- - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-purple a code { --- - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-fuchsia a { --- - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-fuchsia a code { --- - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-pink a { --- - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-pink a code { --- - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-rose a { --- - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + .\\\\32xl\\\\:prose-rose a code { " @@ -40059,17663 +22804,9373 @@ it('the `not-prose` class is properly prefixed', async () => { --- - - .prose :where([class~='lead']):not(:where(.not-prose *)) { - + .tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { - + color: #4b5563; - + font-size: 1.25em; - + line-height: 1.6; - + margin-top: 1.2em; - + margin-bottom: 1.2em; - - --- - - - .prose :where(a):not(:where(.not-prose *)) { - + .tw-prose :where(a):not(:where(.tw-not-prose *)) { - + color: #111827; - + text-decoration: underline; - + font-weight: 500; + - .prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .tw-prose :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(strong):not(:where(.not-prose *)) { - + .tw-prose :where(strong):not(:where(.tw-not-prose *)) { - + color: #111827; - + font-weight: 600; + - .prose :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { - + --list-counter-style: upper-alpha; + - .prose :where(strong):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { + - .prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='A']):not(:where([class~='tw-not-prose'] *)) { --- - + --list-counter-style: lower-alpha; + - .prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='a']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { + - .prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='A' s]):not(:where([class~='tw-not-prose'] *)) { --- - + --list-counter-style: upper-alpha; + - .prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='a' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { - + --list-counter-style: lower-alpha; + - .prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='I']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { - + --list-counter-style: upper-roman; + - .prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='i']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { + - .prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='I' s]):not(:where([class~='tw-not-prose'] *)) { --- - + --list-counter-style: lower-roman; + - .prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='i' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { + - .prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol[type='1']):not(:where([class~='tw-not-prose'] *)) { --- - + --list-counter-style: upper-roman; + - .prose :where(ol > li):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { + - .prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - + --list-counter-style: lower-roman; + - .prose :where(ul > li):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { - + --list-counter-style: decimal; + - .prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose :where(ol > li):not(:where(.not-prose *)) { - + .tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { - + position: relative; - + padding-left: 1.75em; + - .prose :where(hr):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol > li):not(:where(.not-prose *))::before { - + .tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { - + content: counter(list-item, var(--list-counter-style, decimal)) '.'; - + position: absolute; - + font-weight: 400; - + color: #6b7280; - + left: 0; + - .prose :where(blockquote):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ul > li):not(:where(.not-prose *)) { - + .tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { - + position: relative; - + padding-left: 1.75em; + - .prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + + .tw-prose :where(blockquote p:first-of-type):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose :where(ul > li):not(:where(.not-prose *))::before { - + .tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { - + content: ''; - + position: absolute; - + background-color: #d1d5db; - + border-radius: 50%; - + width: 0.375em; - + height: 0.375em; - + top: calc(0.875em - 0.1875em); - + left: 0.25em; + - .prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + + .tw-prose :where(blockquote p:last-of-type):not(:where([class~='tw-not-prose'] *))::after { --- - - .prose :where(hr):not(:where(.not-prose *)) { - + .tw-prose :where(hr):not(:where(.tw-not-prose *)) { - + border-color: #e5e7eb; - + border-top-width: 1px; - + margin-top: 3em; - + margin-bottom: 3em; + - .prose :where(h1):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(blockquote):not(:where(.not-prose *)) { - + .tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { - + font-weight: 500; - + font-style: italic; - + color: #111827; - + border-left-width: 0.25rem; - + border-left-color: #e5e7eb; - + quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - + margin-top: 1.6em; - + margin-bottom: 1.6em; - + padding-left: 1em; + - .prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h1 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { + - .prose :where(h2):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - + content: open-quote; + - .prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h2 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { + - .prose :where(h3):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - + content: close-quote; + - .prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h3 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h1):not(:where(.not-prose *)) { - + .tw-prose :where(h1):not(:where(.tw-not-prose *)) { + - .prose :where(h4):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - + color: #111827; - + font-weight: 800; - + font-size: 2.25em; - + margin-top: 0; - + margin-bottom: 0.8888889em; - + line-height: 1.1111111; + - .prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h4 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h1 strong):not(:where(.not-prose *)) { - + .tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { - + font-weight: 900; + - .prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h2):not(:where(.not-prose *)) { - + .tw-prose :where(h2):not(:where(.tw-not-prose *)) { - + color: #111827; - + font-weight: 700; - + font-size: 1.5em; - + margin-top: 2em; - + margin-bottom: 1em; - + line-height: 1.3333333; + - .prose :where(code):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h2 strong):not(:where(.not-prose *)) { - + .tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { + - .prose :where(code):not(:where([class~='not-prose'] *))::before { + + .tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::before { --- - + font-weight: 800; + - .prose :where(code):not(:where([class~='not-prose'] *))::after { + + .tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::after { --- - - .prose :where(h3):not(:where(.not-prose *)) { - + .tw-prose :where(h3):not(:where(.tw-not-prose *)) { - + color: #111827; - + font-weight: 600; - + font-size: 1.25em; - + margin-top: 1.6em; - + margin-bottom: 0.6em; - + line-height: 1.6; + - .prose :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h3 strong):not(:where(.not-prose *)) { - + .tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { - + font-weight: 700; + - .prose :where(pre):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h4):not(:where(.not-prose *)) { - + .tw-prose :where(h4):not(:where(.tw-not-prose *)) { - + color: #111827; - + font-weight: 600; - + margin-top: 1.5em; - + margin-bottom: 0.5em; - + line-height: 1.5; + - .prose :where(pre code):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h4 strong):not(:where(.not-prose *)) { - + .tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { - + font-weight: 700; + - .prose :where(pre code):not(:where([class~='not-prose'] *))::before { + + .tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose :where(figure figcaption):not(:where(.not-prose *)) { - + .tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .prose :where(pre code):not(:where([class~='not-prose'] *))::after { + + .tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::after { --- - + color: #6b7280; - + font-size: 0.875em; - + line-height: 1.4285714; - + margin-top: 0.8571429em; + - .prose :where(table):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(code):not(:where(.not-prose *)) { - + .tw-prose :where(code):not(:where(.tw-not-prose *)) { - + color: #111827; - + font-weight: 600; - + font-size: 0.875em; + - .prose :where(thead):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(thead):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(code):not(:where(.not-prose *))::before { - + .tw-prose :where(code):not(:where(.tw-not-prose *))::before { + - .prose :where(thead th):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - + content: '\`'; + - .prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(tbody tr):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(code):not(:where(.not-prose *))::after { - + .tw-prose :where(code):not(:where(.tw-not-prose *))::after { - + content: '\`'; + - .prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(tbody tr:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(a code):not(:where(.not-prose *)) { - + .tw-prose :where(a code):not(:where(.tw-not-prose *)) { - + color: #111827; + - .prose :where(tbody td):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(pre):not(:where(.not-prose *)) { - + .tw-prose :where(pre):not(:where(.tw-not-prose *)) { - + color: #e5e7eb; - + background-color: #1f2937; - + overflow-x: auto; - + font-size: 0.875em; - + line-height: 1.7142857; - + margin-top: 1.7142857em; - + margin-bottom: 1.7142857em; - + border-radius: 0.375rem; - + padding-top: 0.8571429em; - + padding-right: 1.1428571em; - + padding-bottom: 0.8571429em; - + padding-left: 1.1428571em; + - .prose { + + .tw-prose { --- - - .prose :where(pre code):not(:where(.not-prose *)) { - + .tw-prose :where(pre code):not(:where(.tw-not-prose *)) { - + background-color: transparent; - + border-width: 0; - + border-radius: 0; - + padding: 0; - + font-weight: 400; - + color: inherit; - + font-size: inherit; - + font-family: inherit; - + line-height: inherit; + - .prose :where(p):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(pre code):not(:where(.not-prose *))::before { - + .tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { + - .prose :where(img):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(img):not(:where([class~='tw-not-prose'] *)) { --- - + content: none; + - .prose :where(video):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(pre code):not(:where(.not-prose *))::after { - + .tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { - + content: none; + - .prose :where(figure):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(table):not(:where(.not-prose *)) { - + .tw-prose :where(table):not(:where(.tw-not-prose *)) { + - .prose :where(figure > *):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - + width: 100%; - + table-layout: auto; - + text-align: left; - + margin-top: 2em; - + margin-bottom: 2em; - + font-size: 0.875em; - + line-height: 1.7142857; + - .prose :where(h2 code):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(thead):not(:where(.not-prose *)) { - + .tw-prose :where(thead):not(:where(.tw-not-prose *)) { + - .prose :where(h3 code):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - + color: #111827; - + font-weight: 600; - + border-bottom-width: 1px; - + border-bottom-color: #d1d5db; + - .prose :where(ol):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(thead th):not(:where(.not-prose *)) { - + .tw-prose :where(thead th):not(:where(.tw-not-prose *)) { - + vertical-align: bottom; - + padding-right: 0.5714286em; - + padding-bottom: 0.5714286em; - + padding-left: 0.5714286em; + - .prose :where(ul):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(tbody tr):not(:where(.not-prose *)) { - + .tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { + - .prose :where(li):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(li):not(:where([class~='tw-not-prose'] *)) { --- - + border-bottom-width: 1px; - + border-bottom-color: #e5e7eb; + - .prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { + - .prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - + border-bottom-width: 0; + - .prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(tbody td):not(:where(.not-prose *)) { - + .tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { + - .prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - + vertical-align: top; - + padding-top: 0.5714286em; - + padding-right: 0.5714286em; - + padding-bottom: 0.5714286em; - + padding-left: 0.5714286em; + - .prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose { - + .tw-prose { + - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(p):not(:where(.not-prose *)) { - + .tw-prose :where(p):not(:where(.tw-not-prose *)) { - + margin-top: 1.25em; - + margin-bottom: 1.25em; + - .prose :where(hr + *):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(img):not(:where(.not-prose *)) { - + .tw-prose :where(img):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(video):not(:where(.not-prose *)) { - + .tw-prose :where(video):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(figure):not(:where(.not-prose *)) { - + .tw-prose :where(figure):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(figure > *):not(:where(.not-prose *)) { - + .tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { - + margin-top: 0; - + margin-bottom: 0; + - .prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h2 code):not(:where(.not-prose *)) { - + .tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { + - .prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.875em; + - .prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h3 code):not(:where(.not-prose *)) { - + .tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { - + font-size: 0.9em; + - .prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ol):not(:where(.not-prose *)) { - + .tw-prose :where(ol):not(:where(.tw-not-prose *)) { - + margin-top: 1.25em; - + margin-bottom: 1.25em; + - .prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ul):not(:where(.not-prose *)) { - + .tw-prose :where(ul):not(:where(.tw-not-prose *)) { + - .prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.25em; - + margin-bottom: 1.25em; + - .prose-sm { + + .tw-prose-sm { --- - - .prose :where(li):not(:where(.not-prose *)) { - + .tw-prose :where(li):not(:where(.tw-not-prose *)) { - + margin-top: 0.5em; - + margin-bottom: 0.5em; + - .prose-sm :where(p):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(> ul > li p):not(:where(.not-prose *)) { - + .tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0.75em; - + margin-bottom: 0.75em; + - .prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.25em; + - .prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 1.25em; + - .prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - + margin-top: 1.25em; + - .prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .prose-sm :where(img):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(img):not(:where([class~='tw-not-prose'] *)) { --- - + margin-bottom: 1.25em; + - .prose-sm :where(video):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - + margin-top: 0.75em; - + margin-bottom: 0.75em; + - .prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(hr + *):not(:where(.not-prose *)) { - + .tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { + - .prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h2 + *):not(:where(.not-prose *)) { - + .tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { + - .prose-sm :where(code):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(code):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h3 + *):not(:where(.not-prose *)) { - + .tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { + - .prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(h4 + *):not(:where(.not-prose *)) { - + .tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { - + padding-left: 0; + - .prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .prose-sm :where(li):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - + padding-left: 0; + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose :where(> :first-child):not(:where(.not-prose *)) { - + .tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose :where(> :last-child):not(:where(.not-prose *)) { - + .tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { + - .prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - + margin-bottom: 0; + - .prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm { - + .tw-prose-sm { + - .prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(p):not(:where(.not-prose *)) { - + .tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { - + margin-top: 1.1428571em; - + margin-bottom: 1.1428571em; + - .prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { - + font-size: 1.2857143em; - + line-height: 1.5555556; - + margin-top: 0.8888889em; - + margin-bottom: 0.8888889em; + - .prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; - + margin-bottom: 1.3333333em; - + padding-left: 1.1111111em; + - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h1):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { - + font-size: 2.1428571em; - + margin-top: 0; - + margin-bottom: 0.8em; - + line-height: 1.2; + - .prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h2):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { + - .prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 1.4285714em; - + margin-top: 1.6em; - + margin-bottom: 0.8em; - + line-height: 1.4; + - .prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h3):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { - + font-size: 1.2857143em; - + margin-top: 1.5555556em; - + margin-bottom: 0.4444444em; - + line-height: 1.5555556; + - .prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h4):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { - + margin-top: 1.4285714em; - + margin-bottom: 0.5714286em; - + line-height: 1.4285714; + - .prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(img):not(:where(.not-prose *)) { - + .tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { - + margin-top: 1.7142857em; - + margin-bottom: 1.7142857em; + - .prose-sm :where(table):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(video):not(:where(.not-prose *)) { - + .tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { - + margin-top: 1.7142857em; - + margin-bottom: 1.7142857em; + - .prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(figure):not(:where(.not-prose *)) { - + .tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { - + margin-top: 1.7142857em; - + margin-bottom: 1.7142857em; + - .prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { - + margin-top: 0; - + margin-bottom: 0; + - .prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { - + font-size: 0.8571429em; - + line-height: 1.3333333; - + margin-top: 0.6666667em; + - .prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(code):not(:where(.not-prose *)) { - + .tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { - + font-size: 0.8571429em; + - .prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { + - .prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.9em; + - .prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { + - .prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-sm :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.8888889em; + - .prose-lg { + + .tw-prose-lg { --- - - .prose-sm :where(pre):not(:where(.not-prose *)) { - + .tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { - + font-size: 0.8571429em; - + line-height: 1.6666667; - + margin-top: 1.6666667em; - + margin-bottom: 1.6666667em; - + border-radius: 0.25rem; - + padding-top: 0.6666667em; - + padding-right: 1em; - + padding-bottom: 0.6666667em; - + padding-left: 1em; + - .prose-lg :where(p):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(ol):not(:where(.not-prose *)) { - + .tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { - + margin-top: 1.1428571em; - + margin-bottom: 1.1428571em; + - .prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(ul):not(:where(.not-prose *)) { - + .tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { + - .prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.1428571em; - + margin-bottom: 1.1428571em; + - .prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(li):not(:where(.not-prose *)) { - + .tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { - + margin-top: 0.2857143em; - + margin-bottom: 0.2857143em; + - .prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { - + padding-left: 1.5714286em; + - .prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { - + left: 0; + - .prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { + - .prose-lg :where(img):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(img):not(:where([class~='tw-not-prose'] *)) { --- - + padding-left: 1.5714286em; + - .prose-lg :where(video):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { - + height: 0.3571429em; - + width: 0.3571429em; - + top: calc(0.8571429em - 0.1785714em); - + left: 0.2142857em; + - .prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { - + margin-top: 0.5714286em; - + margin-bottom: 0.5714286em; + - .prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.1428571em; + - .prose-lg :where(code):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 1.1428571em; + - .prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - + margin-top: 1.1428571em; + - .prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 1.1428571em; + - .prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - + margin-top: 0.5714286em; - + margin-bottom: 0.5714286em; + - .prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(hr):not(:where(.not-prose *)) { - + .tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { - + margin-top: 2.8571429em; - + margin-bottom: 2.8571429em; + - .prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-lg :where(li):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(table):not(:where(.not-prose *)) { - + .tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { - + font-size: 0.8571429em; - + line-height: 1.5; + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-sm :where(thead th):not(:where(.not-prose *)) { - + .tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { - + padding-right: 1em; - + padding-bottom: 0.6666667em; - + padding-left: 1em; + - .prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { - + padding-left: 0; + - .prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { - + padding-top: 0.6666667em; - + padding-right: 1em; - + padding-bottom: 0.6666667em; - + padding-left: 1em; + - .prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - + padding-left: 0; + - .prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { + - .prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { + - .prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - + margin-bottom: 0; + - .prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg { - + .tw-prose-lg { + - .prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(p):not(:where(.not-prose *)) { - + .tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; - + margin-bottom: 1.3333333em; + - .prose-lg :where(table):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { - + font-size: 1.2222222em; - + line-height: 1.4545455; - + margin-top: 1.0909091em; - + margin-bottom: 1.0909091em; + - .prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { - + margin-top: 1.6666667em; - + margin-bottom: 1.6666667em; - + padding-left: 1em; + - .prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h1):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { - + font-size: 2.6666667em; - + margin-top: 0; - + margin-bottom: 0.8333333em; - + line-height: 1; + - .prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h2):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { + - .prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 1.6666667em; - + margin-top: 1.8666667em; - + margin-bottom: 1.0666667em; - + line-height: 1.3333333; + - .prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h3):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { - + font-size: 1.3333333em; - + margin-top: 1.6666667em; - + margin-bottom: 0.6666667em; - + line-height: 1.5; + - .prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h4):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { - + margin-top: 1.7777778em; - + margin-bottom: 0.4444444em; - + line-height: 1.5555556; + - .prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(img):not(:where(.not-prose *)) { - + .tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { - + margin-top: 1.7777778em; - + margin-bottom: 1.7777778em; + - .prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-lg :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(video):not(:where(.not-prose *)) { - + .tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { - + margin-top: 1.7777778em; - + margin-bottom: 1.7777778em; + - .prose-xl { + + .tw-prose-xl { --- - - .prose-lg :where(figure):not(:where(.not-prose *)) { - + .tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { - + margin-top: 1.7777778em; - + margin-bottom: 1.7777778em; + - .prose-xl :where(p):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { + - .prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; - + margin-bottom: 0; + - .prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { - + font-size: 0.8888889em; - + line-height: 1.5; - + margin-top: 1em; + - .prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(code):not(:where(.not-prose *)) { - + .tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { + - .prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.8888889em; + - .prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { - + font-size: 0.8666667em; + - .prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { - + font-size: 0.875em; + - .prose-xl :where(img):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(pre):not(:where(.not-prose *)) { - + .tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { - + font-size: 0.8888889em; - + line-height: 1.75; - + margin-top: 2em; - + margin-bottom: 2em; - + border-radius: 0.375rem; - + padding-top: 1em; - + padding-right: 1.5em; - + padding-bottom: 1em; - + padding-left: 1.5em; + - .prose-xl :where(video):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(ol):not(:where(.not-prose *)) { - + .tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; - + margin-bottom: 1.3333333em; + - .prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(ul):not(:where(.not-prose *)) { - + .tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; - + margin-bottom: 1.3333333em; + - .prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(li):not(:where(.not-prose *)) { - + .tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { - + margin-top: 0.6666667em; - + margin-bottom: 0.6666667em; + - .prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { - + padding-left: 1.6666667em; + - .prose-xl :where(code):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { - + left: 0; + - .prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { - + padding-left: 1.6666667em; + - .prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { - + width: 0.3333333em; - + height: 0.3333333em; - + top: calc(0.8888889em - 0.1666667em); - + left: 0.2222222em; + - .prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { - + margin-top: 0.8888889em; - + margin-bottom: 0.8888889em; + - .prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.3333333em; + - .prose-xl :where(li):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - + margin-bottom: 1.3333333em; + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 1.3333333em; + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - + margin-top: 0.8888889em; - + margin-bottom: 0.8888889em; + - .prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(hr):not(:where(.not-prose *)) { - + .tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { + - .prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 3.1111111em; - + margin-bottom: 3.1111111em; + - .prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { + - .prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { + - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(table):not(:where(.not-prose *)) { - + .tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { - + font-size: 0.8888889em; - + line-height: 1.5; + - .prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(thead th):not(:where(.not-prose *)) { - + .tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { + - .prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - + padding-right: 0.75em; - + padding-bottom: 0.75em; - + padding-left: 0.75em; + - .prose-xl :where(table):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { - + padding-left: 0; + - .prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { - + padding-top: 0.75em; - + padding-right: 0.75em; - + padding-bottom: 0.75em; - + padding-left: 0.75em; + - .prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - + padding-left: 0; + - .prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - + padding-right: 0; + - .prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 0; + - .prose-2xl { + + .tw-prose-2xl { --- - - .prose-xl { - + .tw-prose-xl { + - .prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(p):not(:where(.not-prose *)) { - + .tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { + - .prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.2em; - + margin-bottom: 1.2em; + - .prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - + font-size: 1.2em; - + line-height: 1.5; - + margin-top: 1em; - + margin-bottom: 1em; + - .prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { - + margin-top: 1.6em; - + margin-bottom: 1.6em; - + padding-left: 1.0666667em; + - .prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h1):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { - + font-size: 2.8em; - + margin-top: 0; - + margin-bottom: 0.8571429em; - + line-height: 1; + - .prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h2):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { - + font-size: 1.8em; - + margin-top: 1.5555556em; - + margin-bottom: 0.8888889em; - + line-height: 1.1111111; + - .prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h3):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { - + font-size: 1.5em; - + margin-top: 1.6em; - + margin-bottom: 0.6666667em; - + line-height: 1.3333333; + - .prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h4):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.8em; - + margin-bottom: 0.6em; - + line-height: 1.6; + - .prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(img):not(:where(.not-prose *)) { - + .tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(video):not(:where(.not-prose *)) { - + .tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(figure):not(:where(.not-prose *)) { - + .tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; - + margin-bottom: 0; + - .prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - + font-size: 0.9em; - + line-height: 1.5555556; - + margin-top: 1em; + - .prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(code):not(:where(.not-prose *)) { - + .tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { - + font-size: 0.9em; + - .prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { - + font-size: 0.8611111em; + - .prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.9em; + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(pre):not(:where(.not-prose *)) { - + .tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { - + font-size: 0.9em; - + line-height: 1.7777778; - + margin-top: 2em; - + margin-bottom: 2em; - + border-radius: 0.5rem; - + padding-top: 1.1111111em; - + padding-right: 1.3333333em; - + padding-bottom: 1.1111111em; - + padding-left: 1.3333333em; + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-xl :where(ol):not(:where(.not-prose *)) { - + .tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { - + margin-top: 1.2em; - + margin-bottom: 1.2em; + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(ul):not(:where(.not-prose *)) { - + .tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { - + margin-top: 1.2em; - + margin-bottom: 1.2em; + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-xl :where(li):not(:where(.not-prose *)) { - + .tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0.6em; - + margin-bottom: 0.6em; + - .prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { - + padding-left: 1.8em; + - .prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { - + left: 0; + - .prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - + padding-left: 1.8em; + - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - + width: 0.35em; - + height: 0.35em; - + top: calc(0.9em - 0.175em); - + left: 0.25em; + - .prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - + margin-top: 0.8em; - + margin-bottom: 0.8em; + - .prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.2em; + - .prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - + margin-bottom: 1.2em; + - .prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - + margin-top: 1.2em; + - .prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 1.2em; + - .prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - + margin-top: 0.8em; - + margin-bottom: 0.8em; + - .prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(hr):not(:where(.not-prose *)) { - + .tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { - + margin-top: 2.8em; - + margin-bottom: 2.8em; + - .prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .tw-prose-2xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0; + - .prose-slate :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-slate :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-slate :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(table):not(:where(.not-prose *)) { - + .tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { - + font-size: 0.9em; - + line-height: 1.5555556; + - .prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-zinc :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(thead th):not(:where(.not-prose *)) { - + .tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { - + padding-right: 0.6666667em; - + padding-bottom: 0.8888889em; - + padding-left: 0.6666667em; + - .prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-zinc :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-neutral :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + padding-left: 0; + - .prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-neutral :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .prose-stone :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-stone :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + padding-right: 0; + - .prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-stone :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .prose-red :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-red :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + padding-top: 0.8888889em; - + padding-right: 0.6666667em; - + padding-bottom: 0.8888889em; - + padding-left: 0.6666667em; + - .prose-red :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-red :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .prose-orange :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-orange :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + padding-left: 0; + - .prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-orange :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .prose-amber :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-amber :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-amber :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-yellow :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + margin-bottom: 0; + - .prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-yellow :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl { - + .tw-prose-2xl { + - .prose-lime :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-lime :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(p):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; - + margin-bottom: 1.3333333em; + - .prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-lime :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - + font-size: 1.25em; - + line-height: 1.4666667; - + margin-top: 1.0666667em; - + margin-bottom: 1.0666667em; + - .prose-green :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-green :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { - + margin-top: 1.7777778em; - + margin-bottom: 1.7777778em; - + padding-left: 1.1111111em; + - .prose-green :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-green :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h1):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { + - .prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-emerald :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 2.6666667em; - + margin-top: 0; - + margin-bottom: 0.875em; - + line-height: 1; + - .prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-emerald :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h2):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { - + font-size: 2em; - + margin-top: 1.5em; - + margin-bottom: 0.8333333em; - + line-height: 1.0833333; + - .prose-teal :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-teal :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h3):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { - + font-size: 1.5em; - + margin-top: 1.5555556em; - + margin-bottom: 0.6666667em; - + line-height: 1.2222222; + - .prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-teal :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h4):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { + - .prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-cyan :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.6666667em; - + margin-bottom: 0.6666667em; - + line-height: 1.5; + - .prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-cyan :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(img):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose-sky :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-sky :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(video):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-sky :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(figure):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { - + margin-top: 2em; - + margin-bottom: 2em; + - .prose-blue :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-blue :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { - + margin-top: 0; - + margin-bottom: 0; + - .prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-blue :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - + font-size: 0.8333333em; - + line-height: 1.6; - + margin-top: 1em; + - .prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-indigo :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(code):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { - + font-size: 0.8333333em; + - .prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-indigo :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .prose-violet :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-violet :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.875em; + - .prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-violet :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .prose-purple :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-purple :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.8888889em; + - .prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-purple :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(pre):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { - + font-size: 0.8333333em; - + line-height: 1.8; - + margin-top: 2em; - + margin-bottom: 2em; - + border-radius: 0.5rem; - + padding-top: 1.2em; - + padding-right: 1.6em; - + padding-bottom: 1.2em; - + padding-left: 1.6em; + - .prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-fuchsia :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(ol):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; - + margin-bottom: 1.3333333em; + - .prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-fuchsia :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(ul):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; - + margin-bottom: 1.3333333em; + - .prose-pink :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-pink :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(li):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { + - .prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-pink :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 0.5em; - + margin-bottom: 0.5em; + - .prose-rose :where(a):not(:where([class~='not-prose'] *)) { + + .tw-prose-rose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { - + padding-left: 1.6666667em; + - .prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + + .tw-prose-rose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose { + + .sm\\\\:tw-prose { --- - + left: 0; + - .sm\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - + padding-left: 1.6666667em; + - .sm\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { - + width: 0.3333333em; - + height: 0.3333333em; - + top: calc(0.8333333em - 0.1666667em); - + left: 0.25em; + - .sm\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='A']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - + margin-top: 0.8333333em; - + margin-bottom: 0.8333333em; + - .sm\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='a']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - + margin-top: 1.3333333em; + - .sm\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='A' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 1.3333333em; + - .sm\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='a' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='I']):not(:where([class~='tw-not-prose'] *)) { --- - + margin-top: 1.3333333em; + - .sm\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='i']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 1.3333333em; + - .sm\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='I' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - + margin-top: 0.6666667em; - + margin-bottom: 0.6666667em; + - .sm\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='i' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(hr):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { - + margin-top: 3em; - + margin-bottom: 3em; + - .sm\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol[type='1']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-2xl :where(table):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - + font-size: 0.8333333em; - + line-height: 1.4; + - .sm\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { - + padding-right: 0.6em; - + padding-bottom: 0.8em; - + padding-left: 0.6em; + - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose :where(blockquote p:first-of-type):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + + .sm\\\\:tw-prose :where(blockquote p:last-of-type):not(:where([class~='tw-not-prose'] *))::after { --- - + padding-left: 0; + - .sm\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .sm\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h1 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { - + padding-top: 0.8em; - + padding-right: 0.6em; - + padding-bottom: 0.8em; - + padding-left: 0.6em; + - .sm\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - + padding-left: 0; + - .sm\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h2 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - + padding-right: 0; + - .sm\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { - + margin-top: 0; + - .sm\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h3 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { - + margin-bottom: 0; + - .sm\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-slate :where(a):not(:where(.not-prose *)) { - + .tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h4 strong):not(:where([class~='tw-not-prose'] *)) { --- - + color: #475569; + - .sm\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-slate :where(a code):not(:where(.not-prose *)) { - + .tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *)) { --- - + color: #475569; + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-zinc :where(a):not(:where(.not-prose *)) { - + .tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { - + color: #52525b; + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + + .sm\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::after { --- - - .prose-zinc :where(a code):not(:where(.not-prose *)) { - + .tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { - + color: #52525b; + - .sm\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-neutral :where(a):not(:where(.not-prose *)) { - + .tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { - + color: #525252; + - .sm\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-neutral :where(a code):not(:where(.not-prose *)) { - + .tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { - + color: #525252; + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-stone :where(a):not(:where(.not-prose *)) { - + .tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { - + color: #57534e; + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::before { --- - - .prose-stone :where(a code):not(:where(.not-prose *)) { - + .tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { - + color: #57534e; + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + + .sm\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::after { --- - - .prose-red :where(a):not(:where(.not-prose *)) { - + .tw-prose-red :where(a):not(:where(.tw-not-prose *)) { - + color: #dc2626; + - .sm\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-red :where(a code):not(:where(.not-prose *)) { - + .tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(thead):not(:where([class~='tw-not-prose'] *)) { --- - + color: #dc2626; + - .sm\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-orange :where(a):not(:where(.not-prose *)) { - + .tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(tbody tr):not(:where([class~='tw-not-prose'] *)) { --- - + color: #ea580c; + - .sm\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(tbody tr:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-orange :where(a code):not(:where(.not-prose *)) { - + .tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - + color: #ea580c; + - .sm\\\\:prose { + + .sm\\\\:tw-prose { --- - - .prose-amber :where(a):not(:where(.not-prose *)) { - + .tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { - + color: #d97706; + - .sm\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-amber :where(a code):not(:where(.not-prose *)) { - + .tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { - + color: #d97706; + - .sm\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-yellow :where(a):not(:where(.not-prose *)) { - + .tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { - + color: #ca8a04; + - .sm\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-yellow :where(a code):not(:where(.not-prose *)) { - + .tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { - + color: #ca8a04; + - .sm\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lime :where(a):not(:where(.not-prose *)) { - + .tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - + color: #65a30d; + - .sm\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-lime :where(a code):not(:where(.not-prose *)) { - + .tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { - + color: #65a30d; + - .sm\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-green :where(a):not(:where(.not-prose *)) { - + .tw-prose-green :where(a):not(:where(.tw-not-prose *)) { - + color: #16a34a; + - .sm\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-green :where(a code):not(:where(.not-prose *)) { - + .tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { - + color: #16a34a; + - .sm\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-emerald :where(a):not(:where(.not-prose *)) { - + .tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(li):not(:where([class~='tw-not-prose'] *)) { --- - + color: #059669; + - .sm\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-emerald :where(a code):not(:where(.not-prose *)) { - + .tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - + color: #059669; + - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-teal :where(a):not(:where(.not-prose *)) { - + .tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - + color: #0d9488; + - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-teal :where(a code):not(:where(.not-prose *)) { - + .tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { - + color: #0d9488; + - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-cyan :where(a):not(:where(.not-prose *)) { - + .tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { - + color: #0891b2; + - .sm\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-cyan :where(a code):not(:where(.not-prose *)) { - + .tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - + color: #0891b2; + - .sm\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sky :where(a):not(:where(.not-prose *)) { - + .tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - + color: #0284c7; + - .sm\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-sky :where(a code):not(:where(.not-prose *)) { - + .tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { - + color: #0284c7; + - .sm\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-blue :where(a):not(:where(.not-prose *)) { - + .tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { - + color: #2563eb; + - .sm\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-blue :where(a code):not(:where(.not-prose *)) { - + .tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - + color: #2563eb; + - .sm\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-indigo :where(a):not(:where(.not-prose *)) { - + .tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - + color: #4f46e5; + - .sm\\\\:prose-sm { + + .sm\\\\:tw-prose-sm { --- - - .prose-indigo :where(a code):not(:where(.not-prose *)) { - + .tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(p):not(:where([class~='tw-not-prose'] *)) { --- - + color: #4f46e5; + - .sm\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-violet :where(a):not(:where(.not-prose *)) { - + .tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { - + color: #7c3aed; + - .sm\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-violet :where(a code):not(:where(.not-prose *)) { - + .tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { - + color: #7c3aed; + - .sm\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-purple :where(a):not(:where(.not-prose *)) { - + .tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - + color: #9333ea; + - .sm\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-purple :where(a code):not(:where(.not-prose *)) { - + .tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { - + color: #9333ea; + - .sm\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { - + color: #c026d3; + - .sm\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { - + color: #c026d3; + - .sm\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-pink :where(a):not(:where(.not-prose *)) { - + .tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - + color: #db2777; + - .sm\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-pink :where(a code):not(:where(.not-prose *)) { - + .tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - + color: #db2777; + - .sm\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-rose :where(a):not(:where(.not-prose *)) { - + .tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - + color: #e11d48; + - .sm\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .prose-rose :where(a code):not(:where(.not-prose *)) { - + .tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { - + color: #e11d48; + - .sm\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose { - + .sm\\\\:tw-prose { + - .sm\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sm :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg { + + .sm\\\\:tw-prose-lg { --- - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .sm\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { + - .sm\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .sm\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { + - .sm\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .sm\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { + - .sm\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .sm\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { + - .sm\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lg :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-xl { + + .sm\\\\:tw-prose-xl { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .sm\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { + - .sm\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .sm\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { + - .sm\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose { - + .sm\\\\:tw-prose { + - .sm\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl { + + .sm\\\\:tw-prose-2xl { --- - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .sm\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm { - + .sm\\\\:tw-prose-sm { + - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-2xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-slate :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-slate :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-zinc :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-zinc :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-neutral :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-neutral :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-stone :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-stone :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-red :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-red :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-orange :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-orange :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-amber :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-amber :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-yellow :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-yellow :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lime :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-lime :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-green :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-green :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-emerald :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-emerald :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-teal :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-teal :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-cyan :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-cyan :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sky :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { + - .sm\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-sky :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-blue :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-blue :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-indigo :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-indigo :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-violet :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-violet :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-purple :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-purple :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-fuchsia :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-fuchsia :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-pink :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-pink :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-rose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + + .sm\\\\:tw-prose-rose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose { + + .md\\\\:tw-prose { --- - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='A']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='a']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='A' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='a' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='I']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='i']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='I' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='i' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol[type='1']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose :where(blockquote p:first-of-type):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + + .md\\\\:tw-prose :where(blockquote p:last-of-type):not(:where([class~='tw-not-prose'] *))::after { --- - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h1 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h2 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg { - + .sm\\\\:tw-prose-lg { + - .md\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h3 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h4 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + + .md\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::after { --- - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + + .md\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::after { --- - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(thead):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(tbody tr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(tbody tr:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { + - .md\\\\:prose { + + .md\\\\:tw-prose { --- - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-sm { + + .md\\\\:tw-prose-sm { --- - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl { - + .sm\\\\:tw-prose-xl { + - .md\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sm :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg { + + .md\\\\:tw-prose-lg { --- - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lg :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl { + + .md\\\\:tw-prose-xl { --- - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl { - + .sm\\\\:tw-prose-2xl { + - .md\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl { + + .md\\\\:tw-prose-2xl { --- - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .md\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .sm\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { + - .md\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-2xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-slate :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-slate :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-zinc :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-zinc :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-neutral :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-neutral :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-stone :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-stone :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-red :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-red :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-orange :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-orange :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-amber :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-amber :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-yellow :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-yellow :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lime :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-lime :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-green :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-green :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-emerald :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-emerald :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-teal :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-teal :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-cyan :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-cyan :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sky :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-sky :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-blue :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-blue :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-indigo :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-indigo :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-violet :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-violet :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-purple :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-purple :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-fuchsia :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-fuchsia :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-pink :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-pink :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-rose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { + - .md\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + + .md\\\\:tw-prose-rose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose { + + .lg\\\\:tw-prose { --- - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='A']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='a']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='A' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='a' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='I']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='i']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='I' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='i' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol[type='1']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose :where(blockquote p:first-of-type):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + + .lg\\\\:tw-prose :where(blockquote p:last-of-type):not(:where([class~='tw-not-prose'] *))::after { --- - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h1 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h2 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h3 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h4 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + + .lg\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::after { --- - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::before { --- - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + + .lg\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::after { --- - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(thead):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(tbody tr):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(tbody tr:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose { + + .lg\\\\:tw-prose { --- - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm { + + .lg\\\\:tw-prose-sm { --- - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .sm\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose { - + .md\\\\:tw-prose { + - .lg\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sm :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg { + + .lg\\\\:tw-prose-lg { --- - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .md\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { + - .lg\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .md\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { + - .lg\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .md\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { + - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .md\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { + - .lg\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .md\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { + - .lg\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .md\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { + - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lg :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl { + + .lg\\\\:tw-prose-xl { --- - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose { - + .md\\\\:tw-prose { + - .lg\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl { + + .lg\\\\:tw-prose-2xl { --- - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm { - + .md\\\\:tw-prose-sm { + - .lg\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .lg\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-2xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-slate :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-slate :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-zinc :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-zinc :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-neutral :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-neutral :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-stone :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-stone :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-red :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-red :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-orange :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-orange :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-amber :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-amber :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-yellow :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-yellow :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lime :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-lime :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-green :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-green :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { + - .lg\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-emerald :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-emerald :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-teal :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-teal :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-cyan :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-cyan :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sky :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-sky :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-blue :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-blue :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-indigo :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-indigo :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-violet :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-violet :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-purple :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-purple :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-fuchsia :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-fuchsia :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-pink :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-pink :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-rose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { + - .lg\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + + .lg\\\\:tw-prose-rose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose { + + .xl\\\\:tw-prose { --- - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='A']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='a']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='A' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='a' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='I']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='i']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='I' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='i' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol[type='1']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg { - + .md\\\\:tw-prose-lg { + - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose :where(blockquote p:first-of-type):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + + .xl\\\\:tw-prose :where(blockquote p:last-of-type):not(:where([class~='tw-not-prose'] *))::after { --- - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h1 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h2 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h3 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h4 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + + .xl\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::after { --- - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + + .xl\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::after { --- - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(thead):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(tbody tr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(tbody tr:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose { + + .xl\\\\:tw-prose { --- - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm { + + .xl\\\\:tw-prose-sm { --- - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl { - + .md\\\\:tw-prose-xl { + - .xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sm :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg { + + .xl\\\\:tw-prose-lg { --- - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lg :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl { + + .xl\\\\:tw-prose-xl { --- - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl { - + .md\\\\:tw-prose-2xl { + - .xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl { + + .xl\\\\:tw-prose-2xl { --- - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .xl\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .md\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { + - .xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-2xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-slate :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-slate :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-zinc :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-zinc :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-neutral :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-neutral :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-stone :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-stone :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-red :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-red :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-orange :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-orange :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-amber :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-amber :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-yellow :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-yellow :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lime :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-lime :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-green :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-green :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-emerald :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-emerald :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-teal :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-teal :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-cyan :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-cyan :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sky :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-sky :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-blue :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-blue :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-indigo :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-indigo :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-violet :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-violet :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-purple :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-purple :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-fuchsia :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-fuchsia :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-pink :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-pink :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-rose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { + - .xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + + .xl\\\\:tw-prose-rose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose { + + .\\\\32xl\\\\:tw-prose { --- - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='A']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='a']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='A' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='a' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='I']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='i']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='I' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='i' s]):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol[type='1']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose :where(blockquote p:first-of-type):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { + + .\\\\32xl\\\\:tw-prose :where(blockquote p:last-of-type):not(:where([class~='tw-not-prose'] *))::after { --- - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h1 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h2 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h3 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h4 strong):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { + + .\\\\32xl\\\\:tw-prose :where(code):not(:where([class~='tw-not-prose'] *))::after { --- - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::before { --- - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { + + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where([class~='tw-not-prose'] *))::after { --- - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(thead):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(tbody tr):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(tbody tr:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose { + + .\\\\32xl\\\\:tw-prose { --- - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm { + + .\\\\32xl\\\\:tw-prose-sm { --- - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .md\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose { - + .lg\\\\:tw-prose { + - .\\\\32xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-sm :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-sm :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .lg\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { + - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sm :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .lg\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { + - .\\\\32xl\\\\:prose-lg { + + .\\\\32xl\\\\:tw-prose-lg { --- - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-lg :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .lg\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-lg :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .lg\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { + - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .lg\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { + - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .lg\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { + - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lg :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl { + + .\\\\32xl\\\\:tw-prose-xl { --- - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose { - + .lg\\\\:tw-prose { + - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl { + + .\\\\32xl\\\\:tw-prose-2xl { --- - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(p):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where([class~='lead']):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(blockquote):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h1):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h2):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h3):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h4):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(img):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(video):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(figure):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(figure > *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm { - + .lg\\\\:tw-prose-sm { + - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(figure figcaption):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h2 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h3 code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(pre):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(ul):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-2xl :where(ol > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + + .\\\\32xl\\\\:tw-prose-2xl :where(ul > li):not(:where([class~='tw-not-prose'] *))::before { --- - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li p):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(hr):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(hr + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h2 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h3 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(h4 + *):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(table):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(thead th):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(thead th:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(thead th:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(> :first-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-2xl :where(> :last-child):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-slate :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-slate :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-zinc :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-zinc :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-neutral :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-neutral :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-stone :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-stone :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-red :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-red :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-orange :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-orange :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-amber :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-amber :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { + - .\\\\32xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-yellow :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-yellow :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lime :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-lime :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-green :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-green :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-emerald :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-emerald :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-teal :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-teal :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-cyan :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-cyan :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sky :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-sky :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-blue :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-blue :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-indigo :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-indigo :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-violet :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-violet :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-purple :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-purple :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-fuchsia :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-fuchsia :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-pink :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-pink :where(a code):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-rose :where(a):not(:where([class~='tw-not-prose'] *)) { --- - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- + - .\\\\32xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + + .\\\\32xl\\\\:tw-prose-rose :where(a code):not(:where([class~='tw-not-prose'] *)) { - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { + " + `) +}) - --- +it('should be possible to change the default modifiers', async () => { + expect(await diffOnly({ modifiers: ['sm', 'lg', 'xl' /**, '2xl' */] })).toMatchInlineSnapshot(` + " - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - .prose-2xl { + - font-size: 1.5rem; + - line-height: 1.6666667; + - } + - .prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - margin-bottom: 1.3333333em; + - } + - .prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + - font-size: 1.25em; + - line-height: 1.4666667; + - margin-top: 1.0666667em; + - margin-bottom: 1.0666667em; + - } + - .prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + - margin-top: 1.7777778em; + - margin-bottom: 1.7777778em; + - padding-left: 1.1111111em; + - } + - .prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + - font-size: 2.6666667em; + - margin-top: 0; + - margin-bottom: 0.875em; + - line-height: 1; + - } + - .prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + - font-size: 2em; + - margin-top: 1.5em; + - margin-bottom: 0.8333333em; + - line-height: 1.0833333; + - } + - .prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + - font-size: 1.5em; + - margin-top: 1.5555556em; + - margin-bottom: 0.6666667em; + - line-height: 1.2222222; + - } + - .prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + - margin-top: 1.6666667em; + - margin-bottom: 0.6666667em; + - line-height: 1.5; + - } + - .prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + - margin-top: 2em; + - margin-bottom: 2em; + - } + - .prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + - margin-top: 2em; + - margin-bottom: 2em; + - } + - .prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + - margin-top: 2em; + - margin-bottom: 2em; + - } + - .prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - margin-bottom: 0; + - } + - .prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - line-height: 1.6; + - margin-top: 1em; + - } + - .prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - } + - .prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + - font-size: 0.875em; + - } + - .prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + - font-size: 0.8888889em; + - } + - .prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - line-height: 1.8; + - margin-top: 2em; + - margin-bottom: 2em; + - border-radius: 0.5rem; + - padding-top: 1.2em; + - padding-right: 1.6em; + - padding-bottom: 1.2em; + - padding-left: 1.6em; + - } + - .prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - margin-bottom: 1.3333333em; + - } + - .prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - margin-bottom: 1.3333333em; + - } + - .prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + - margin-top: 0.5em; + - margin-bottom: 0.5em; + - } + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + - padding-left: 1.6666667em; + - } + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + - left: 0; + - } + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + - padding-left: 1.6666667em; + - } + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + - width: 0.3333333em; + - height: 0.3333333em; + - top: calc(0.8333333em - 0.1666667em); + - left: 0.25em; + - } + - .prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + - margin-top: 0.8333333em; + - margin-bottom: 0.8333333em; + - } + - .prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - } + - .prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + - margin-bottom: 1.3333333em; + - } + - .prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - } + - .prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + - margin-bottom: 1.3333333em; + - } + - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + - margin-top: 0.6666667em; + - margin-bottom: 0.6666667em; + - } + - .prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + - margin-top: 3em; + - margin-bottom: 3em; + - } + - .prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - line-height: 1.4; + - } + - .prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + - padding-right: 0.6em; + - padding-bottom: 0.8em; + - padding-left: 0.6em; + - } + - .prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + - padding-left: 0; + - } + - .prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + - padding-right: 0; + - } + - .prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + - padding-top: 0.8em; + - padding-right: 0.6em; + - padding-bottom: 0.8em; + - padding-left: 0.6em; + - } + - .prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + - padding-left: 0; + - } + - .prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + - padding-right: 0; + - } + - .prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + - margin-bottom: 0; + - } + - .prose-slate :where(a):not(:where([class~='not-prose'] *)) { + - color: #475569; + - } + - .prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + - color: #475569; + - } + - .prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + - color: #52525b; + - } + - .prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + - color: #52525b; + - } + - .prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + - color: #525252; + - } + - .prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + - color: #525252; + - } + - .prose-stone :where(a):not(:where([class~='not-prose'] *)) { + - color: #57534e; + - } + - .prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + - color: #57534e; + - } + - .prose-red :where(a):not(:where([class~='not-prose'] *)) { + - color: #dc2626; + - } + - .prose-red :where(a code):not(:where([class~='not-prose'] *)) { + - color: #dc2626; + - } + - .prose-orange :where(a):not(:where([class~='not-prose'] *)) { + - color: #ea580c; + - } + - .prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + - color: #ea580c; + - } + - .prose-amber :where(a):not(:where([class~='not-prose'] *)) { + - color: #d97706; + - } + - .prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + - color: #d97706; + - } + - .prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + - color: #ca8a04; + - } + - .prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + - color: #ca8a04; + - } + - .prose-lime :where(a):not(:where([class~='not-prose'] *)) { + - color: #65a30d; + - } + - .prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + - color: #65a30d; + - } + - .prose-green :where(a):not(:where([class~='not-prose'] *)) { + - color: #16a34a; + - } + - .prose-green :where(a code):not(:where([class~='not-prose'] *)) { + - color: #16a34a; + - } + - .prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + - color: #059669; + - } + - .prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + - color: #059669; + - } + - .prose-teal :where(a):not(:where([class~='not-prose'] *)) { + - color: #0d9488; + - } + - .prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + - color: #0d9488; + - } + - .prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + - color: #0891b2; + - } + - .prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + - color: #0891b2; + - } + - .prose-sky :where(a):not(:where([class~='not-prose'] *)) { + - color: #0284c7; + - } + - .prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + - color: #0284c7; + - } + - .prose-blue :where(a):not(:where([class~='not-prose'] *)) { + - color: #2563eb; + - } + - .prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + - color: #2563eb; + - } + - .prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + - color: #4f46e5; + - } + - .prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + - color: #4f46e5; + - } + - .prose-violet :where(a):not(:where([class~='not-prose'] *)) { + - color: #7c3aed; + - } + - .prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + - color: #7c3aed; + - } + - .prose-purple :where(a):not(:where([class~='not-prose'] *)) { + - color: #9333ea; + - } + - .prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + - color: #9333ea; + - } + - .prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + - color: #c026d3; + - } + - .prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + - color: #c026d3; + - } + - .prose-pink :where(a):not(:where([class~='not-prose'] *)) { + - color: #db2777; + - } + - .prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + - color: #db2777; + - } + - .prose-rose :where(a):not(:where([class~='not-prose'] *)) { + - color: #e11d48; + - } + - .prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + - color: #e11d48; + - } --- - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { + - margin-bottom: 0; + - } + - .sm\\\\:prose-2xl { + - font-size: 1.5rem; + - line-height: 1.6666667; + - } + - .sm\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - margin-bottom: 1.3333333em; + - } + - .sm\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { + - font-size: 1.25em; + - line-height: 1.4666667; + - margin-top: 1.0666667em; + - margin-bottom: 1.0666667em; + - } + - .sm\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { + - margin-top: 1.7777778em; + - margin-bottom: 1.7777778em; + - padding-left: 1.1111111em; + - } + - .sm\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { + - font-size: 2.6666667em; + - margin-top: 0; + - margin-bottom: 0.875em; + - line-height: 1; + - } + - .sm\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { + - font-size: 2em; + - margin-top: 1.5em; + - margin-bottom: 0.8333333em; + - line-height: 1.0833333; + - } + - .sm\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { + - font-size: 1.5em; + - margin-top: 1.5555556em; + - margin-bottom: 0.6666667em; + - line-height: 1.2222222; + - } + - .sm\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { + - margin-top: 1.6666667em; + - margin-bottom: 0.6666667em; + - line-height: 1.5; + - } + - .sm\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { + - margin-top: 2em; + - margin-bottom: 2em; + - } + - .sm\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { + - margin-top: 2em; + - margin-bottom: 2em; + - } + - .sm\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { + - margin-top: 2em; + - margin-bottom: 2em; + - } + - .sm\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; --- - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { + - } + - .sm\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - line-height: 1.6; + - margin-top: 1em; + - } + - .sm\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - } + - .sm\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { + - font-size: 0.875em; + - } + - .sm\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { + - font-size: 0.8888889em; + - } + - .sm\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - line-height: 1.8; + - margin-top: 2em; + - margin-bottom: 2em; + - border-radius: 0.5rem; + - padding-top: 1.2em; + - padding-right: 1.6em; + - padding-bottom: 1.2em; + - padding-left: 1.6em; + - } + - .sm\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - margin-bottom: 1.3333333em; + - } + - .sm\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - margin-bottom: 1.3333333em; + - } + - .sm\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { + - margin-top: 0.5em; + - margin-bottom: 0.5em; --- - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { + - padding-left: 1.6666667em; + - } + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { + - left: 0; + - } + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { + - padding-left: 1.6666667em; + - } + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { + - width: 0.3333333em; + - height: 0.3333333em; + - top: calc(0.8333333em - 0.1666667em); + - left: 0.25em; + - } + - .sm\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { + - margin-top: 0.8333333em; + - margin-bottom: 0.8333333em; + - } + - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - } + - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { + - margin-bottom: 1.3333333em; + - } + - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { + - margin-top: 1.3333333em; + - } + - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { + - margin-bottom: 1.3333333em; + - } + - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { + - margin-top: 0.6666667em; + - margin-bottom: 0.6666667em; + - } + - .sm\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { + - margin-top: 3em; + - margin-bottom: 3em; + - } + - .sm\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .sm\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .sm\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .sm\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .sm\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { + - font-size: 0.8333333em; + - line-height: 1.4; + - } + - .sm\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { + - padding-right: 0.6em; + - padding-bottom: 0.8em; + - padding-left: 0.6em; + - } + - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { + - padding-left: 0; + - } + - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { + - padding-right: 0; + - } + - .sm\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { + - padding-top: 0.8em; + - padding-right: 0.6em; + - padding-bottom: 0.8em; + - padding-left: 0.6em; + - } + - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { + - padding-left: 0; + - } + - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { + - padding-right: 0; + - } + - .sm\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { + - margin-top: 0; + - } + - .sm\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + - margin-bottom: 0; + - } + - .sm\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { + - color: #475569; + - } + - .sm\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { + - color: #475569; + - } + - .sm\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { + - color: #52525b; + - } + - .sm\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { + - color: #52525b; + - } + - .sm\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { + - color: #525252; + - } + - .sm\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { + - color: #525252; + - } + - .sm\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { + - color: #57534e; + - } + - .sm\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + - color: #57534e; + - } + - .sm\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { + - color: #dc2626; + - } + - .sm\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { + - color: #dc2626; + - } + - .sm\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { + - color: #ea580c; + - } + - .sm\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { + - color: #ea580c; + - } + - .sm\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { + - color: #d97706; + - } + - .sm\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { + - color: #d97706; + - } + - .sm\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { + - color: #ca8a04; + - } + - .sm\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { + - color: #ca8a04; + - } + - .sm\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { + - color: #65a30d; + - } + - .sm\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { + - color: #65a30d; + - } + - .sm\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { + - color: #16a34a; + - } + - .sm\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { + - color: #16a34a; + - } + - .sm\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { + - color: #059669; + - } + - .sm\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { + - color: #059669; + - } + - .sm\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { + - color: #0d9488; + - } + - .sm\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { + - color: #0d9488; + - } + - .sm\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { + - color: #0891b2; + - } + - .sm\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { + - color: #0891b2; + - } + - .sm\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { + - color: #0284c7; + - } + - .sm\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { + - color: #0284c7; + - } + - .sm\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { + - color: #2563eb; + - } + - .sm\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { + - color: #2563eb; + - } + - .sm\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { + - color: #4f46e5; + - } + - .sm\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { + - color: #4f46e5; + - } + - .sm\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { + - color: #7c3aed; + - } + - .sm\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { + - color: #7c3aed; + - } + - .sm\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { + - color: #9333ea; + - } + - .sm\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { + - color: #9333ea; + - } + - .sm\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { + - color: #c026d3; + - } + - .sm\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + - color: #c026d3; + - } + - .sm\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { + - color: #db2777; + - } + - .sm\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { + - color: #db2777; + - } + - .sm\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { + - color: #e11d48; + - } + - .sm\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { + - color: #e11d48; + - } --- - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg { - + .lg\\\\:tw-prose-lg { - - --- - - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl { - + .lg\\\\:tw-prose-xl { - - --- - - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl { - + .lg\\\\:tw-prose-2xl { - - --- - - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .lg\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .lg\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose { - + .xl\\\\:tw-prose { - - --- - - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .xl\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { - - --- - - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .xl\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { - - --- - - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { - - --- - - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { - - --- - - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { - - --- - - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { - - --- - - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose { - + .xl\\\\:tw-prose { - - --- - - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm { - + .xl\\\\:tw-prose-sm { - - --- - - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg { - + .xl\\\\:tw-prose-lg { - - --- - - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl { - + .xl\\\\:tw-prose-xl { - - --- - - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl { - + .xl\\\\:tw-prose-2xl { - - --- - - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .xl\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose { - + .\\\\32xl\\\\:tw-prose { - - --- - - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='A']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='a']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='A' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='a' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='I']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='i']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='I' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='i' s]):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol[type='1']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(blockquote p:first-of-type):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .\\\\32xl\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { - - --- - - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - + .\\\\32xl\\\\:tw-prose :where(blockquote p:last-of-type):not(:where(.tw-not-prose *))::after { - - --- - - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h1 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h4 strong):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .\\\\32xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { - - --- - - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - + .\\\\32xl\\\\:tw-prose :where(code):not(:where(.tw-not-prose *))::after { - - --- - - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { - - --- - - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - + .\\\\32xl\\\\:tw-prose :where(pre code):not(:where(.tw-not-prose *))::after { - - --- - - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody tr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody tr:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose { - + .\\\\32xl\\\\:tw-prose { - - --- - - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm { - + .\\\\32xl\\\\:tw-prose-sm { - - --- - - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-sm :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-sm :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sm :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg { - + .\\\\32xl\\\\:tw-prose-lg { - - --- - - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-lg :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-lg :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lg :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl { - + .\\\\32xl\\\\:tw-prose-xl { - - --- - - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl { - + .\\\\32xl\\\\:tw-prose-2xl { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where([class~='lead']):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(blockquote):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h1):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h2):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h3):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h4):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(img):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(video):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(figure):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(figure > *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(figure figcaption):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h2 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h3 code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(pre):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-2xl :where(ol > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul > li):not(:where(.tw-not-prose *))::before { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li p):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ul > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ol > li > *:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> ol > li > *:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(hr):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(hr + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h2 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h3 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(h4 + *):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(table):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(thead th):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(thead th:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(thead th:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td:first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(tbody td:last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> :first-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-2xl :where(> :last-child):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-slate :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-slate :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-zinc :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-zinc :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-neutral :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-neutral :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-stone :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-stone :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-red :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-red :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-orange :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-orange :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-amber :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-amber :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-yellow :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-yellow :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lime :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-lime :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-green :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-green :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-emerald :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-emerald :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-teal :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-teal :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-cyan :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-cyan :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sky :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-sky :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-blue :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-blue :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-indigo :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-indigo :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-violet :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-violet :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-purple :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-purple :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-fuchsia :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-fuchsia :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-pink :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-pink :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-rose :where(a):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { - - --- - - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - + .\\\\32xl\\\\:tw-prose-rose :where(a code):not(:where(.tw-not-prose *)) { - - " - `) -}) - -it('should be possible to change the default modifiers', async () => { - expect(await diffOnly({ modifiers: ['sm', 'lg', 'xl' /**, '2xl' */] })).toMatchInlineSnapshot(` - " - - - .prose-2xl { - - font-size: 1.5rem; - - line-height: 1.6666667; - - } - - .prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - --- - - - } - - .sm\\\\:prose-2xl { - - font-size: 1.5rem; - - line-height: 1.6666667; - - } - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - --- - - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - --- - - - margin-bottom: 0; - } - .md\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - --- - - - } - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -57726,610 +32181,305 @@ it('should be possible to change the default modifiers', async () => { - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - --- - - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - - } --- + - margin-bottom: 0; - } - .lg\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - - --- - - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - } - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -58340,448 +32490,230 @@ it('should be possible to change the default modifiers', async () => { - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; + - .lg\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + --- + - } - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; + - .lg\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { + - color: #57534e; - } - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + + --- + + - .lg\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } @@ -58793,154 +32725,75 @@ it('should be possible to change the default modifiers', async () => { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - } - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -58951,610 +32804,310 @@ it('should be possible to change the default modifiers', async () => { - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { --- - } - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - - --- - - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - } - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + + --- + + - .xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } --- + - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -59565,448 +33118,228 @@ it('should be possible to change the default modifiers', async () => { - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; + - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { + + --- + - } - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; " @@ -60023,65 +33356,65 @@ it('should be possible to change the default modifiers and change the className' - color: #374151; - max-width: 65ch; - } - - .prose :where([class~='lead']):not(:where(.not-prose *)) { + - .prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose :where(a):not(:where(.not-prose *)) { + - .prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .prose :where(strong):not(:where(.not-prose *)) { + - .prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .prose :where(ol > li):not(:where(.not-prose *)) { + - .prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .prose :where(ol > li):not(:where(.not-prose *))::before { + - .prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .prose :where(ul > li):not(:where(.not-prose *)) { + - .prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .prose :where(ul > li):not(:where(.not-prose *))::before { + - .prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -60091,13 +33424,13 @@ it('should be possible to change the default modifiers and change the className' - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .prose :where(hr):not(:where(.not-prose *)) { + - .prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .prose :where(blockquote):not(:where(.not-prose *)) { + - .prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -60108,13 +33441,13 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1.6em; - padding-left: 1em; - } - - .prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .prose :where(h1):not(:where(.not-prose *)) { + - .prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -60122,10 +33455,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .prose :where(h1 strong):not(:where(.not-prose *)) { + - .prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .prose :where(h2):not(:where(.not-prose *)) { + - .prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -60133,10 +33466,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1em; - line-height: 1.3333333; - } - - .prose :where(h2 strong):not(:where(.not-prose *)) { + - .prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .prose :where(h3):not(:where(.not-prose *)) { + - .prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -60144,40 +33477,40 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.6em; - line-height: 1.6; - } - - .prose :where(h3 strong):not(:where(.not-prose *)) { + - .prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .prose :where(h4):not(:where(.not-prose *)) { + - .prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .prose :where(h4 strong):not(:where(.not-prose *)) { + - .prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .prose :where(figure figcaption):not(:where(.not-prose *)) { + - .prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .prose :where(code):not(:where(.not-prose *)) { + - .prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .prose :where(code):not(:where(.not-prose *))::before { + - .prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .prose :where(code):not(:where(.not-prose *))::after { + - .prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .prose :where(a code):not(:where(.not-prose *)) { + - .prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .prose :where(pre):not(:where(.not-prose *)) { + - .prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -60191,7 +33524,7 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .prose :where(pre code):not(:where(.not-prose *)) { + - .prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -60202,13 +33535,13 @@ it('should be possible to change the default modifiers and change the className' - font-family: inherit; - line-height: inherit; - } - - .prose :where(pre code):not(:where(.not-prose *))::before { + - .prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .prose :where(pre code):not(:where(.not-prose *))::after { + - .prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .prose :where(table):not(:where(.not-prose *)) { + - .prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -60217,26 +33550,26 @@ it('should be possible to change the default modifiers and change the className' - font-size: 0.875em; - line-height: 1.7142857; - } - - .prose :where(thead):not(:where(.not-prose *)) { + - .prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .prose :where(thead th):not(:where(.not-prose *)) { + - .prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .prose :where(tbody tr):not(:where(.not-prose *)) { + - .prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .prose :where(tbody td):not(:where(.not-prose *)) { + - .prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -60247,167 +33580,167 @@ it('should be possible to change the default modifiers and change the className' - font-size: 1rem; - line-height: 1.75; - } - - .prose :where(p):not(:where(.not-prose *)) { + - .prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .prose :where(img):not(:where(.not-prose *)) { + - .prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose :where(video):not(:where(.not-prose *)) { + - .prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose :where(figure):not(:where(.not-prose *)) { + - .prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose :where(figure > *):not(:where(.not-prose *)) { + - .prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose :where(h2 code):not(:where(.not-prose *)) { + - .prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .prose :where(h3 code):not(:where(.not-prose *)) { + - .prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose :where(ol):not(:where(.not-prose *)) { + - .prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .prose :where(ul):not(:where(.not-prose *)) { + - .prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .prose :where(li):not(:where(.not-prose *)) { + - .prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .prose :where(> ul > li p):not(:where(.not-prose *)) { + - .prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .prose :where(hr + *):not(:where(.not-prose *)) { + - .prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(h2 + *):not(:where(.not-prose *)) { + - .prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(h3 + *):not(:where(.not-prose *)) { + - .prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(h4 + *):not(:where(.not-prose *)) { + - .prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose :where(> :first-child):not(:where(.not-prose *)) { + - .prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose :where(> :last-child):not(:where(.not-prose *)) { + - .prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .prose-sm :where(p):not(:where(.not-prose *)) { + - .prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .prose-sm :where(h1):not(:where(.not-prose *)) { + - .prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .prose-sm :where(h2):not(:where(.not-prose *)) { + - .prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .prose-sm :where(h3):not(:where(.not-prose *)) { + - .prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .prose-sm :where(h4):not(:where(.not-prose *)) { + - .prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .prose-sm :where(img):not(:where(.not-prose *)) { + - .prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .prose-sm :where(video):not(:where(.not-prose *)) { + - .prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .prose-sm :where(figure):not(:where(.not-prose *)) { + - .prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .prose-sm :where(code):not(:where(.not-prose *)) { + - .prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .prose-sm :where(pre):not(:where(.not-prose *)) { + - .prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -60418,175 +33751,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .prose-sm :where(ol):not(:where(.not-prose *)) { + - .prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .prose-sm :where(ul):not(:where(.not-prose *)) { + - .prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .prose-sm :where(li):not(:where(.not-prose *)) { + - .prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .prose-sm :where(hr):not(:where(.not-prose *)) { + - .prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(table):not(:where(.not-prose *)) { + - .prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .prose-sm :where(thead th):not(:where(.not-prose *)) { + - .prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .prose-lg :where(p):not(:where(.not-prose *)) { + - .prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .prose-lg :where(h1):not(:where(.not-prose *)) { + - .prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .prose-lg :where(h2):not(:where(.not-prose *)) { + - .prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .prose-lg :where(h3):not(:where(.not-prose *)) { + - .prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .prose-lg :where(h4):not(:where(.not-prose *)) { + - .prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .prose-lg :where(img):not(:where(.not-prose *)) { + - .prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .prose-lg :where(video):not(:where(.not-prose *)) { + - .prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .prose-lg :where(figure):not(:where(.not-prose *)) { + - .prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .prose-lg :where(code):not(:where(.not-prose *)) { + - .prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .prose-lg :where(pre):not(:where(.not-prose *)) { + - .prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -60597,175 +33930,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1em; - padding-left: 1.5em; - } - - .prose-lg :where(ol):not(:where(.not-prose *)) { + - .prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-lg :where(ul):not(:where(.not-prose *)) { + - .prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-lg :where(li):not(:where(.not-prose *)) { + - .prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .prose-lg :where(hr):not(:where(.not-prose *)) { + - .prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .prose-lg :where(hr + *):not(:where(.not-prose *)) { + - .prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(table):not(:where(.not-prose *)) { + - .prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .prose-lg :where(thead th):not(:where(.not-prose *)) { + - .prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .prose-xl :where(p):not(:where(.not-prose *)) { + - .prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .prose-xl :where(h1):not(:where(.not-prose *)) { + - .prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .prose-xl :where(h2):not(:where(.not-prose *)) { + - .prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .prose-xl :where(h3):not(:where(.not-prose *)) { + - .prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .prose-xl :where(h4):not(:where(.not-prose *)) { + - .prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .prose-xl :where(img):not(:where(.not-prose *)) { + - .prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-xl :where(video):not(:where(.not-prose *)) { + - .prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-xl :where(figure):not(:where(.not-prose *)) { + - .prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .prose-xl :where(code):not(:where(.not-prose *)) { + - .prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .prose-xl :where(pre):not(:where(.not-prose *)) { + - .prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -60776,175 +34109,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .prose-xl :where(ol):not(:where(.not-prose *)) { + - .prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose-xl :where(ul):not(:where(.not-prose *)) { + - .prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .prose-xl :where(li):not(:where(.not-prose *)) { + - .prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .prose-xl :where(hr):not(:where(.not-prose *)) { + - .prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .prose-xl :where(hr + *):not(:where(.not-prose *)) { + - .prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(table):not(:where(.not-prose *)) { + - .prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .prose-xl :where(thead th):not(:where(.not-prose *)) { + - .prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .prose-2xl :where(p):not(:where(.not-prose *)) { + - .prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .prose-2xl :where(h1):not(:where(.not-prose *)) { + - .prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .prose-2xl :where(h2):not(:where(.not-prose *)) { + - .prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .prose-2xl :where(h3):not(:where(.not-prose *)) { + - .prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .prose-2xl :where(h4):not(:where(.not-prose *)) { + - .prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .prose-2xl :where(img):not(:where(.not-prose *)) { + - .prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-2xl :where(video):not(:where(.not-prose *)) { + - .prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-2xl :where(figure):not(:where(.not-prose *)) { + - .prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .prose-2xl :where(code):not(:where(.not-prose *)) { + - .prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .prose-2xl :where(pre):not(:where(.not-prose *)) { + - .prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -60955,226 +34288,226 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .prose-2xl :where(ol):not(:where(.not-prose *)) { + - .prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(ul):not(:where(.not-prose *)) { + - .prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(li):not(:where(.not-prose *)) { + - .prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .prose-2xl :where(hr):not(:where(.not-prose *)) { + - .prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(table):not(:where(.not-prose *)) { + - .prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .prose-slate :where(a):not(:where(.not-prose *)) { + - .prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .prose-slate :where(a code):not(:where(.not-prose *)) { + - .prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .prose-zinc :where(a):not(:where(.not-prose *)) { + - .prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .prose-zinc :where(a code):not(:where(.not-prose *)) { + - .prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .prose-neutral :where(a):not(:where(.not-prose *)) { + - .prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .prose-neutral :where(a code):not(:where(.not-prose *)) { + - .prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .prose-stone :where(a):not(:where(.not-prose *)) { + - .prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .prose-stone :where(a code):not(:where(.not-prose *)) { + - .prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .prose-red :where(a):not(:where(.not-prose *)) { + - .prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .prose-red :where(a code):not(:where(.not-prose *)) { + - .prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .prose-orange :where(a):not(:where(.not-prose *)) { + - .prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .prose-orange :where(a code):not(:where(.not-prose *)) { + - .prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .prose-amber :where(a):not(:where(.not-prose *)) { + - .prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .prose-amber :where(a code):not(:where(.not-prose *)) { + - .prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .prose-yellow :where(a):not(:where(.not-prose *)) { + - .prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .prose-yellow :where(a code):not(:where(.not-prose *)) { + - .prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .prose-lime :where(a):not(:where(.not-prose *)) { + - .prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .prose-lime :where(a code):not(:where(.not-prose *)) { + - .prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .prose-green :where(a):not(:where(.not-prose *)) { + - .prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .prose-green :where(a code):not(:where(.not-prose *)) { + - .prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .prose-emerald :where(a):not(:where(.not-prose *)) { + - .prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .prose-emerald :where(a code):not(:where(.not-prose *)) { + - .prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .prose-teal :where(a):not(:where(.not-prose *)) { + - .prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .prose-teal :where(a code):not(:where(.not-prose *)) { + - .prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .prose-cyan :where(a):not(:where(.not-prose *)) { + - .prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .prose-cyan :where(a code):not(:where(.not-prose *)) { + - .prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .prose-sky :where(a):not(:where(.not-prose *)) { + - .prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .prose-sky :where(a code):not(:where(.not-prose *)) { + - .prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .prose-blue :where(a):not(:where(.not-prose *)) { + - .prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .prose-blue :where(a code):not(:where(.not-prose *)) { + - .prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .prose-indigo :where(a):not(:where(.not-prose *)) { + - .prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .prose-indigo :where(a code):not(:where(.not-prose *)) { + - .prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .prose-violet :where(a):not(:where(.not-prose *)) { + - .prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .prose-violet :where(a code):not(:where(.not-prose *)) { + - .prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .prose-purple :where(a):not(:where(.not-prose *)) { + - .prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .prose-purple :where(a code):not(:where(.not-prose *)) { + - .prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .prose-pink :where(a):not(:where(.not-prose *)) { + - .prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .prose-pink :where(a code):not(:where(.not-prose *)) { + - .prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .prose-rose :where(a):not(:where(.not-prose *)) { + - .prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .prose-rose :where(a code):not(:where(.not-prose *)) { + - .prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - @media (min-width: 640px) { @@ -61182,133 +34515,65 @@ it('should be possible to change the default modifiers and change the className' - color: #374151; - max-width: 65ch; - } - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .sm\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .sm\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .sm\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .sm\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .sm\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .sm\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .sm\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .sm\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .sm\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .sm\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .sm\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .sm\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .sm\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -61318,30 +34583,13 @@ it('should be possible to change the default modifiers and change the className' - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .sm\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .sm\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -61352,27 +34600,13 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1.6em; - padding-left: 1em; - } - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .sm\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .sm\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -61380,13 +34614,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .sm\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -61394,21 +34625,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1em; - line-height: 1.3333333; - } - - .sm\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .sm\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -61416,95 +34636,40 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.6em; - line-height: 1.6; - } - - .sm\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .sm\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .sm\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .sm\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .sm\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .sm\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .sm\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .sm\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -61518,18 +34683,7 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -61540,28 +34694,13 @@ it('should be possible to change the default modifiers and change the className' - font-family: inherit; - line-height: inherit; - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .sm\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .sm\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .sm\\\\:prose :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -61570,52 +34709,26 @@ it('should be possible to change the default modifiers and change the className' - font-size: 0.875em; - line-height: 1.7142857; - } - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .sm\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .sm\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .sm\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .sm\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .sm\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -61626,334 +34739,167 @@ it('should be possible to change the default modifiers and change the className' - font-size: 1rem; - line-height: 1.75; - } - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .sm\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .sm\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .sm\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .sm\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .sm\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .sm\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .sm\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .sm\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .sm\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .sm\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .sm\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .sm\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .sm\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .sm\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .sm\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .sm\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -61964,350 +34910,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .sm\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .sm\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .sm\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .sm\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .sm\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .sm\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; + - .sm\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { + - margin-top: 0; - } - - .sm\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .sm\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .sm\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .sm\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .sm\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .sm\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .sm\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .sm\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -62318,350 +35089,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1em; - padding-left: 1.5em; - } - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .sm\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .sm\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .sm\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .sm\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .sm\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .sm\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .sm\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .sm\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .sm\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .sm\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .sm\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .sm\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .sm\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .sm\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .sm\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .sm\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - } - - .sm\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -62672,350 +35268,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .sm\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .sm\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .sm\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .sm\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .sm\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .sm\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .sm\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .sm\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .sm\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .sm\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .sm\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .sm\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .sm\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .sm\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .sm\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .sm\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .sm\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .sm\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .sm\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .sm\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .sm\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .sm\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -63026,583 +35447,293 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .sm\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .sm\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .sm\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .sm\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .sm\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .sm\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .sm\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .sm\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .sm\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .sm\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .sm\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .sm\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .sm\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .sm\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .sm\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .sm\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .sm\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .sm\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .sm\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .sm\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .sm\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .sm\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .sm\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .sm\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .sm\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .sm\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .sm\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .sm\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .sm\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .sm\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .sm\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .sm\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .sm\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .sm\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .sm\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } - - @media (min-width: 768px) { - - .md\\\\:prose { - - color: #374151; - - max-width: 65ch; - - } - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; + - @media (min-width: 768px) { + - .md\\\\:prose { + - color: #374151; + - max-width: 65ch; - } - - .md\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .md\\\\:prose :where(a):not(:where(.not-prose *)) { + - .md\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .md\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .md\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .md\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .md\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .md\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .md\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .md\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .md\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .md\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .md\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .md\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .md\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -63612,30 +35743,13 @@ it('should be possible to change the default modifiers and change the className' - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .md\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .md\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -63646,27 +35760,13 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1.6em; - padding-left: 1em; - } - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .md\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .md\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .md\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -63674,21 +35774,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .md\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .md\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -63696,21 +35785,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1em; - line-height: 1.3333333; - } - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .md\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .md\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -63718,87 +35796,40 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.6em; - line-height: 1.6; - } - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .md\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .md\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .md\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .md\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .md\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .md\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .md\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -63812,18 +35843,7 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -63834,28 +35854,13 @@ it('should be possible to change the default modifiers and change the className' - font-family: inherit; - line-height: inherit; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .md\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .md\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .md\\\\:prose :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -63864,52 +35869,26 @@ it('should be possible to change the default modifiers and change the className' - font-size: 0.875em; - line-height: 1.7142857; - } - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .md\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .md\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .md\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .md\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .md\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -63920,334 +35899,167 @@ it('should be possible to change the default modifiers and change the className' - font-size: 1rem; - line-height: 1.75; - } - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .md\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .md\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .md\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .md\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .md\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .md\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .md\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .md\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .md\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .md\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .md\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .md\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .md\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - } - - .md\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .md\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -64258,350 +36070,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .md\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .md\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .md\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .md\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .md\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .md\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .md\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .md\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .md\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .md\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\\\\:prose-lg :where(img):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .md\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .md\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .md\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .md\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .md\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -64612,339 +36249,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1em; - padding-left: 1.5em; - } - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .md\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .md\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .md\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .md\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .md\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .md\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .md\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { + - margin-top: 1.2em; + - margin-bottom: 1.2em; + - } + - .md\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .md\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .md\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .md\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .md\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .md\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .md\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .md\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .md\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -64955,361 +36428,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .md\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - } - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .md\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .md\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .md\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .md\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .md\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .md\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .md\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .md\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .md\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .md\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .md\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .md\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .md\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .md\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .md\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .md\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .md\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .md\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .md\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -65320,448 +36607,226 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .md\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .md\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .md\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .md\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .md\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .md\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .md\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .md\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .md\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .md\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .md\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .md\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .md\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .md\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .md\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .md\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .md\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .md\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .md\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .md\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .md\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .md\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .md\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .md\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .md\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .md\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .md\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .md\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .md\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .md\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .md\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .md\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .md\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -65770,133 +36835,65 @@ it('should be possible to change the default modifiers and change the className' - color: #374151; - max-width: 65ch; - } - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .lg\\\\:prose :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .lg\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .lg\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .lg\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .lg\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .lg\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .lg\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .lg\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .lg\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .lg\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .lg\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .lg\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .lg\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -65906,19 +36903,13 @@ it('should be possible to change the default modifiers and change the className' - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .lg\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -65929,38 +36920,13 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1.6em; - padding-left: 1em; - } - - .lg\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .lg\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .lg\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -65968,21 +36934,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .lg\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -65990,13 +36945,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1em; - line-height: 1.3333333; - } - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .lg\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -66004,81 +36956,40 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.6em; - line-height: 1.6; - } - - .lg\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .lg\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .lg\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .lg\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .lg\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .lg\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .lg\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -66092,32 +37003,7 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .lg\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -66128,28 +37014,13 @@ it('should be possible to change the default modifiers and change the className' - font-family: inherit; - line-height: inherit; - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .lg\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .lg\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .lg\\\\:prose :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -66158,52 +37029,26 @@ it('should be possible to change the default modifiers and change the className' - font-size: 0.875em; - line-height: 1.7142857; - } - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .lg\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; + - font-weight: 600; + - border-bottom-width: 1px; + - border-bottom-color: #d1d5db; - } - - .lg\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .lg\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .lg\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .lg\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -66214,334 +37059,167 @@ it('should be possible to change the default modifiers and change the className' - font-size: 1rem; - line-height: 1.75; - } - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .lg\\\\:prose :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .lg\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .lg\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .lg\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .lg\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .lg\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .lg\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .lg\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .lg\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .lg\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -66552,350 +37230,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .lg\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .lg\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .lg\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .lg\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .lg\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .lg\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .lg\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .lg\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .lg\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .lg\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .lg\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .lg\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .lg\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .lg\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -66906,350 +37409,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1em; - padding-left: 1.5em; - } - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .lg\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .lg\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .lg\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .lg\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .lg\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .lg\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .lg\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .lg\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .lg\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .lg\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .lg\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .lg\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .lg\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .lg\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - } - - .lg\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -67260,350 +37588,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .lg\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .lg\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .lg\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .lg\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .lg\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .lg\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .lg\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .lg\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .lg\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .lg\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .lg\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .lg\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .lg\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .lg\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .lg\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .lg\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .lg\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .lg\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .lg\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .lg\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -67614,448 +37767,226 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .lg\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .lg\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .lg\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .lg\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .lg\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .lg\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .lg\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .lg\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .lg\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .lg\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .lg\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .lg\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .lg\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .lg\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .lg\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .lg\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .lg\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .lg\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .lg\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .lg\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .lg\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .lg\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .lg\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .lg\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .lg\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .lg\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .lg\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .lg\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .lg\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .lg\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .lg\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .lg\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .lg\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .lg\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .lg\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .lg\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .lg\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .lg\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .lg\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -68064,133 +37995,65 @@ it('should be possible to change the default modifiers and change the className' - color: #374151; - max-width: 65ch; - } - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .xl\\\\:prose :where(a):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .xl\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -68200,30 +38063,13 @@ it('should be possible to change the default modifiers and change the className' - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -68234,27 +38080,13 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1.6em; - padding-left: 1em; - } - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -68262,13 +38094,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -68276,29 +38105,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1em; - line-height: 1.3333333; - } - - .xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -68306,87 +38116,40 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.6em; - line-height: 1.6; - } - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::before { - - content: '\`'; - - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .xl\\\\:prose :where(code):not(:where(.not-prose *))::after { + - .xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -68400,18 +38163,7 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -68422,28 +38174,13 @@ it('should be possible to change the default modifiers and change the className' - font-family: inherit; - line-height: inherit; - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { + - .xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { - - content: none; - - } - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .xl\\\\:prose :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -68452,52 +38189,26 @@ it('should be possible to change the default modifiers and change the className' - font-size: 0.875em; - line-height: 1.7142857; - } - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -68508,334 +38219,167 @@ it('should be possible to change the default modifiers and change the className' - font-size: 1rem; - line-height: 1.75; - } - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .xl\\\\:prose :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -68846,350 +38390,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -69200,350 +38569,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1em; - padding-left: 1.5em; - } - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - - } - - .xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -69554,339 +38748,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .xl\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -69897,459 +38927,226 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; + - .xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { + - color: #c026d3; - } - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -70358,123 +39155,65 @@ it('should be possible to change the default modifiers and change the className' - color: #374151; - max-width: 65ch; - } - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { - - color: #4b5563; - - font-size: 1.25em; - - line-height: 1.6; - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where([class~='lead']):not(:where([class~='not-prose'] *)) { - color: #4b5563; - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { - - color: #111827; - - text-decoration: underline; - - font-weight: 500; - - } - - .\\\\32xl\\\\:prose :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(a):not(:where([class~='not-prose'] *)) { - color: #111827; - text-decoration: underline; - font-weight: 500; - } - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - } - - .\\\\32xl\\\\:prose :where(strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(strong):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - } - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a']):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='A' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-alpha; - } - - .\\\\32xl\\\\:prose :where(ol[type='a' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-alpha; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I']):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i']):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { - - --list-counter-style: upper-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='I' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: upper-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where([class~='not-prose'] *)) { - --list-counter-style: lower-roman; - } - - .\\\\32xl\\\\:prose :where(ol[type='i' s]):not(:where(.not-prose *)) { - - --list-counter-style: lower-roman; - - } - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { - - --list-counter-style: decimal; - - } - - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol[type='1']):not(:where([class~='not-prose'] *)) { - --list-counter-style: decimal; - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { - - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - - position: absolute; - - font-weight: 400; - - color: #6b7280; - - left: 0; - - } - - .\\\\32xl\\\\:prose :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(ol > li):not(:where([class~='not-prose'] *))::before { - content: counter(list-item, var(--list-counter-style, decimal)) '.'; - position: absolute; - font-weight: 400; - color: #6b7280; - left: 0; - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { - - position: relative; - - padding-left: 1.75em; - - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *)) { - position: relative; - padding-left: 1.75em; - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(ul > li):not(:where([class~='not-prose'] *))::before { - content: ''; - position: absolute; - background-color: #d1d5db; @@ -70484,40 +39223,13 @@ it('should be possible to change the default modifiers and change the className' - top: calc(0.875em - 0.1875em); - left: 0.25em; - } - - .\\\\32xl\\\\:prose :where(ul > li):not(:where(.not-prose *))::before { - - content: ''; - - position: absolute; - - background-color: #d1d5db; - - border-radius: 50%; - - width: 0.375em; - - height: 0.375em; - - top: calc(0.875em - 0.1875em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { - - border-color: #e5e7eb; - - border-top-width: 1px; - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .\\\\32xl\\\\:prose :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr):not(:where([class~='not-prose'] *)) { - border-color: #e5e7eb; - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; - } - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { - - font-weight: 500; - - font-style: italic; - - color: #111827; - - border-left-width: 0.25rem; - - border-left-color: #e5e7eb; - - quotes: '\\\\201C''\\\\201D''\\\\2018''\\\\2019'; - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(blockquote):not(:where([class~='not-prose'] *)) { - font-weight: 500; - font-style: italic; - color: #111827; @@ -70528,27 +39240,13 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1.6em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where([class~='not-prose'] *))::before { - content: open-quote; - } - - .\\\\32xl\\\\:prose :where(blockquote p:first-of-type):not(:where(.not-prose *))::before { - - content: open-quote; - - } - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { - - content: close-quote; - - } - - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(blockquote p:last-of-type):not(:where([class~='not-prose'] *))::after { - content: close-quote; - } - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 800; - - font-size: 2.25em; - - margin-top: 0; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .\\\\32xl\\\\:prose :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 800; - font-size: 2.25em; @@ -70556,21 +39254,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { - - font-weight: 900; - - } - - .\\\\32xl\\\\:prose :where(h1 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h1 strong):not(:where([class~='not-prose'] *)) { - font-weight: 900; - } - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 700; - - font-size: 1.5em; - - margin-top: 2em; - - margin-bottom: 1em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 700; - font-size: 1.5em; @@ -70578,21 +39265,10 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 1em; - line-height: 1.3333333; - } - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 strong):not(:where([class~='not-prose'] *)) { - font-weight: 800; - } - - .\\\\32xl\\\\:prose :where(h2 strong):not(:where(.not-prose *)) { - - font-weight: 800; - - } - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 1.25em; - - margin-top: 1.6em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .\\\\32xl\\\\:prose :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 1.25em; @@ -70600,87 +39276,40 @@ it('should be possible to change the default modifiers and change the className' - margin-bottom: 0.6em; - line-height: 1.6; - } - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .\\\\32xl\\\\:prose :where(h3 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - margin-top: 1.5em; - - margin-bottom: 0.5em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { - - font-weight: 700; - - } - - .\\\\32xl\\\\:prose :where(h4 strong):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 strong):not(:where([class~='not-prose'] *)) { - font-weight: 700; - } - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { - - color: #6b7280; - - font-size: 0.875em; - - line-height: 1.4285714; - - margin-top: 0.8571429em; - - } - - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure figcaption):not(:where([class~='not-prose'] *)) { - color: #6b7280; - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::before { - content: '\`'; - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose :where(code):not(:where([class~='not-prose'] *))::after { - content: '\`'; - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .\\\\32xl\\\\:prose :where(code):not(:where(.not-prose *))::after { - - content: '\`'; - - } - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(a code):not(:where([class~='not-prose'] *)) { - color: #111827; - } - - .\\\\32xl\\\\:prose :where(a code):not(:where(.not-prose *)) { - - color: #111827; - - } - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { - - color: #e5e7eb; - - background-color: #1f2937; - - overflow-x: auto; - - font-size: 0.875em; - - line-height: 1.7142857; - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - border-radius: 0.375rem; - - padding-top: 0.8571429em; - - padding-right: 1.1428571em; - - padding-bottom: 0.8571429em; - - padding-left: 1.1428571em; - - } - - .\\\\32xl\\\\:prose :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre):not(:where([class~='not-prose'] *)) { - color: #e5e7eb; - background-color: #1f2937; - overflow-x: auto; @@ -70694,18 +39323,7 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { - - background-color: transparent; - - border-width: 0; - - border-radius: 0; - - padding: 0; - - font-weight: 400; - - color: inherit; - - font-size: inherit; - - font-family: inherit; - - line-height: inherit; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; @@ -70716,28 +39334,13 @@ it('should be possible to change the default modifiers and change the className' - font-family: inherit; - line-height: inherit; - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::before { - - content: none; - - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::before { - content: none; - } - - .\\\\32xl\\\\:prose :where(pre code):not(:where(.not-prose *))::after { + - .\\\\32xl\\\\:prose :where(pre code):not(:where([class~='not-prose'] *))::after { - content: none; - } - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { - - width: 100%; - - table-layout: auto; - - text-align: left; - - margin-top: 2em; - - margin-bottom: 2em; - - font-size: 0.875em; - - line-height: 1.7142857; - - } - - .\\\\32xl\\\\:prose :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(table):not(:where([class~='not-prose'] *)) { - width: 100%; - table-layout: auto; - text-align: left; @@ -70746,52 +39349,26 @@ it('should be possible to change the default modifiers and change the className' - font-size: 0.875em; - line-height: 1.7142857; - } - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { - - color: #111827; - - font-weight: 600; - - border-bottom-width: 1px; - - border-bottom-color: #d1d5db; - - } - - .\\\\32xl\\\\:prose :where(thead):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead):not(:where([class~='not-prose'] *)) { - color: #111827; - font-weight: 600; - border-bottom-width: 1px; - border-bottom-color: #d1d5db; - } - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { - - vertical-align: bottom; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .\\\\32xl\\\\:prose :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th):not(:where([class~='not-prose'] *)) { - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { - - border-bottom-width: 1px; - - border-bottom-color: #e5e7eb; - - } - - .\\\\32xl\\\\:prose :where(tbody tr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr):not(:where([class~='not-prose'] *)) { - border-bottom-width: 1px; - border-bottom-color: #e5e7eb; - } - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { - - border-bottom-width: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody tr:last-child):not(:where([class~='not-prose'] *)) { - border-bottom-width: 0; - } - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { - - vertical-align: top; - - padding-top: 0.5714286em; - - padding-right: 0.5714286em; - - padding-bottom: 0.5714286em; - - padding-left: 0.5714286em; - - } - - .\\\\32xl\\\\:prose :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td):not(:where([class~='not-prose'] *)) { - vertical-align: top; - padding-top: 0.5714286em; - padding-right: 0.5714286em; @@ -70802,334 +39379,167 @@ it('should be possible to change the default modifiers and change the className' - font-size: 1rem; - line-height: 1.75; - } - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .\\\\32xl\\\\:prose :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.25em; - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.25em; - - } - - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.25em; - } - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.75em; - - margin-bottom: 0.75em; - - } - - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(p):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - line-height: 1.5555556; - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - padding-left: 1.1111111em; - - } - - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .\\\\32xl\\\\:prose-sm :where(h1):not(:where(.not-prose *)) { - - font-size: 2.1428571em; - - margin-top: 0; - - margin-bottom: 0.8em; - - line-height: 1.2; - - } - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { - - font-size: 1.4285714em; - - margin-top: 1.6em; - - margin-bottom: 0.8em; - - line-height: 1.4; - - } - - .\\\\32xl\\\\:prose-sm :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { - - font-size: 1.2857143em; - - margin-top: 1.5555556em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-sm :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.4285714em; - - margin-bottom: 0.5714286em; - - line-height: 1.4285714; - - } - - .\\\\32xl\\\\:prose-sm :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7142857em; - - margin-bottom: 1.7142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .\\\\32xl\\\\:prose-sm :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-sm :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.3333333; - - margin-top: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - } - - .\\\\32xl\\\\:prose-sm :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - } - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.6666667; - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - border-radius: 0.25rem; - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; @@ -71140,350 +39550,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { - - margin-top: 0.2857143em; - - margin-bottom: 0.2857143em; - - } - - .\\\\32xl\\\\:prose-sm :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { - - height: 0.3571429em; - - width: 0.3571429em; - - top: calc(0.8571429em - 0.1785714em); - - left: 0.2142857em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-sm :where(ul > li):not(:where([class~='not-prose'] *))::before { - height: 0.3571429em; - width: 0.3571429em; - top: calc(0.8571429em - 0.1785714em); - left: 0.2142857em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.1428571em; - } - - .\\\\32xl\\\\:prose-sm :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.1428571em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.5714286em; - - margin-bottom: 0.5714286em; - - } - - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8571429em; - - margin-bottom: 2.8571429em; - - } - - .\\\\32xl\\\\:prose-sm :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-sm :where(table):not(:where(.not-prose *)) { - - font-size: 0.8571429em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.6666667em; - - padding-right: 1em; - - padding-bottom: 0.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-sm :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sm :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2222222em; - - line-height: 1.4545455; - - margin-top: 1.0909091em; - - margin-bottom: 1.0909091em; - - } - - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .\\\\32xl\\\\:prose-lg :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 1.6666667em; - - padding-left: 1em; - - } - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.8333333em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-lg :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { - - font-size: 1.6666667em; - - margin-top: 1.8666667em; - - margin-bottom: 1.0666667em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose-lg :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { - - font-size: 1.3333333em; - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-lg :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 0.4444444em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-lg :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(img):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - } - - .\\\\32xl\\\\:prose-lg :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .\\\\32xl\\\\:prose-lg :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-lg :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - margin-top: 1em; - - } - - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8666667em; - } - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.75; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.375rem; - - padding-top: 1em; - - padding-right: 1.5em; - - padding-bottom: 1em; - - padding-left: 1.5em; - - } - - .\\\\32xl\\\\:prose-lg :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; @@ -71494,350 +39729,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1em; - padding-left: 1.5em; - } - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8888889em - 0.1666667em); - - left: 0.2222222em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-lg :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8888889em - 0.1666667em); - left: 0.2222222em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-lg :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8888889em; - - margin-bottom: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { - - margin-top: 3.1111111em; - - margin-bottom: 3.1111111em; - - } - - .\\\\32xl\\\\:prose-lg :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-lg :where(table):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.75em; - - padding-right: 0.75em; - - padding-bottom: 0.75em; - - padding-left: 0.75em; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-lg :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lg :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-xl { - font-size: 1.25rem; - - line-height: 1.8; - - } - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; + - line-height: 1.8; - } - - .\\\\32xl\\\\:prose-xl :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.2em; - - line-height: 1.5; - - margin-top: 1em; - - margin-bottom: 1em; - - } - - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.6em; - - margin-bottom: 1.6em; - - padding-left: 1.0666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.8em; - - margin-top: 0; - - margin-bottom: 0.8571429em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-xl :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { - - font-size: 1.8em; - - margin-top: 1.5555556em; - - margin-bottom: 0.8888889em; - - line-height: 1.1111111; - - } - - .\\\\32xl\\\\:prose-xl :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.6em; - - margin-bottom: 0.6666667em; - - line-height: 1.3333333; - - } - - .\\\\32xl\\\\:prose-xl :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.8em; - - margin-bottom: 0.6em; - - line-height: 1.6; - - } - - .\\\\32xl\\\\:prose-xl :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(img):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(figure):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - margin-top: 1em; - - } - - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - } - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.8611111em; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8611111em; - } - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.9em; - - } - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - - line-height: 1.7777778; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.1111111em; - - padding-right: 1.3333333em; - - padding-bottom: 1.1111111em; - - padding-left: 1.3333333em; - } - - .\\\\32xl\\\\:prose-xl :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; @@ -71848,350 +39908,175 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.6em; - - margin-bottom: 0.6em; - - } - - .\\\\32xl\\\\:prose-xl :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.8em; - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.35em; - - height: 0.35em; - - top: calc(0.9em - 0.175em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.35em; - height: 0.35em; - top: calc(0.9em - 0.175em); - left: 0.25em; - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.2em; - - } - - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.2em; - } - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .\\\\32xl\\\\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.8em; - - margin-bottom: 0.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 2.8em; - - margin-bottom: 2.8em; - - } - - .\\\\32xl\\\\:prose-xl :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.9em; - - line-height: 1.5555556; - - } - - .\\\\32xl\\\\:prose-xl :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8888889em; - - padding-right: 0.6666667em; - - padding-bottom: 0.8888889em; - - padding-left: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - .\\\\32xl\\\\:prose-2xl { - font-size: 1.5rem; - line-height: 1.6666667; - } - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(p):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { - - font-size: 1.25em; - - line-height: 1.4666667; - - margin-top: 1.0666667em; - - margin-bottom: 1.0666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where([class~='lead']):not(:where([class~='not-prose'] *)) { - font-size: 1.25em; - line-height: 1.4666667; - margin-top: 1.0666667em; - margin-bottom: 1.0666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { - - margin-top: 1.7777778em; - - margin-bottom: 1.7777778em; - - padding-left: 1.1111111em; - - } - - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(blockquote):not(:where([class~='not-prose'] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - padding-left: 1.1111111em; - } - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { - - font-size: 2.6666667em; - - margin-top: 0; - - margin-bottom: 0.875em; - - line-height: 1; - - } - - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h1):not(:where([class~='not-prose'] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.875em; - line-height: 1; - } - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { - - font-size: 2em; - - margin-top: 1.5em; - - margin-bottom: 0.8333333em; - - line-height: 1.0833333; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2):not(:where([class~='not-prose'] *)) { - font-size: 2em; - margin-top: 1.5em; - margin-bottom: 0.8333333em; - line-height: 1.0833333; - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where([class~='not-prose'] *)) { - font-size: 1.5em; - margin-top: 1.5555556em; - margin-bottom: 0.6666667em; - line-height: 1.2222222; - } - - .\\\\32xl\\\\:prose-2xl :where(h3):not(:where(.not-prose *)) { - - font-size: 1.5em; - - margin-top: 1.5555556em; - - margin-bottom: 0.6666667em; - - line-height: 1.2222222; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { - - margin-top: 1.6666667em; - - margin-bottom: 0.6666667em; - - line-height: 1.5; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4):not(:where([class~='not-prose'] *)) { - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(img):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { - - margin-top: 2em; - - margin-bottom: 2em; - - } - - .\\\\32xl\\\\:prose-2xl :where(video):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(img):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(video):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { - - margin-top: 0; - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure > *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.6; - - margin-top: 1em; - - } - - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(figure figcaption):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.6; - margin-top: 1em; - } - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(code):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { - - font-size: 0.875em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 code):not(:where([class~='not-prose'] *)) { - font-size: 0.875em; - } - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { - - font-size: 0.8888889em; - - } - - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 code):not(:where([class~='not-prose'] *)) { - font-size: 0.8888889em; - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.8; - - margin-top: 2em; - - margin-bottom: 2em; - - border-radius: 0.5rem; - - padding-top: 1.2em; - - padding-right: 1.6em; - - padding-bottom: 1.2em; - - padding-left: 1.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(pre):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.8; - margin-top: 2em; @@ -72202,448 +40087,226 @@ it('should be possible to change the default modifiers and change the className' - padding-bottom: 1.2em; - padding-left: 1.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { - - margin-top: 0.5em; - - margin-bottom: 0.5em; - - } - - .\\\\32xl\\\\:prose-2xl :where(li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(li):not(:where([class~='not-prose'] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where([class~='not-prose'] *))::before { - left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(ol > li):not(:where(.not-prose *))::before { - - left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { - - padding-left: 1.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *)) { - padding-left: 1.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { + - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where([class~='not-prose'] *))::before { - width: 0.3333333em; - height: 0.3333333em; - top: calc(0.8333333em - 0.1666667em); - left: 0.25em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul > li):not(:where(.not-prose *))::before { - - width: 0.3333333em; - - height: 0.3333333em; - - top: calc(0.8333333em - 0.1666667em); - - left: 0.25em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { - - margin-top: 0.8333333em; - - margin-bottom: 0.8333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li p):not(:where([class~='not-prose'] *)) { - margin-top: 0.8333333em; - margin-bottom: 0.8333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ul > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where([class~='not-prose'] *)) { - margin-top: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:first-child):not(:where(.not-prose *)) { - - margin-top: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { - - margin-bottom: 1.3333333em; - - } - - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> ol > li > *:last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 1.3333333em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .\\\\32xl\\\\:prose-2xl :where(ul ul, ul ol, ol ul, ol ol):not(:where(.not-prose *)) { - - margin-top: 0.6666667em; - - margin-bottom: 0.6666667em; - - } - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { - - margin-top: 3em; - - margin-bottom: 3em; - - } - - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr):not(:where([class~='not-prose'] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(hr + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h2 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(h3 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(h4 + *):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { - - font-size: 0.8333333em; - - line-height: 1.4; - - } - - .\\\\32xl\\\\:prose-2xl :where(table):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(table):not(:where([class~='not-prose'] *)) { - font-size: 0.8333333em; - line-height: 1.4; - } - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th):not(:where([class~='not-prose'] *)) { - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(thead th:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { - - padding-top: 0.8em; - - padding-right: 0.6em; - - padding-bottom: 0.8em; - - padding-left: 0.6em; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td):not(:where([class~='not-prose'] *)) { - padding-top: 0.8em; - padding-right: 0.6em; - padding-bottom: 0.8em; - padding-left: 0.6em; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { - - padding-left: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:first-child):not(:where([class~='not-prose'] *)) { - padding-left: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where([class~='not-prose'] *)) { - padding-right: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(tbody td:last-child):not(:where(.not-prose *)) { - - padding-right: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { - - margin-top: 0; - - } - - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :first-child):not(:where([class~='not-prose'] *)) { - margin-top: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where([class~='not-prose'] *)) { - margin-bottom: 0; - } - - .\\\\32xl\\\\:prose-2xl :where(> :last-child):not(:where(.not-prose *)) { - - margin-bottom: 0; - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { - - color: #475569; - - } - - .\\\\32xl\\\\:prose-slate :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-slate :where(a code):not(:where([class~='not-prose'] *)) { - color: #475569; - } - - .\\\\32xl\\\\:prose-slate :where(a code):not(:where(.not-prose *)) { - - color: #475569; - - } - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .\\\\32xl\\\\:prose-zinc :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where([class~='not-prose'] *)) { - color: #52525b; - } - - .\\\\32xl\\\\:prose-zinc :where(a code):not(:where(.not-prose *)) { - - color: #52525b; - - } - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { - - color: #525252; - - } - - .\\\\32xl\\\\:prose-neutral :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where([class~='not-prose'] *)) { - color: #525252; - } - - .\\\\32xl\\\\:prose-neutral :where(a code):not(:where(.not-prose *)) { - - color: #525252; - - } - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-stone :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-stone :where(a code):not(:where([class~='not-prose'] *)) { - color: #57534e; - } - - .\\\\32xl\\\\:prose-stone :where(a code):not(:where(.not-prose *)) { - - color: #57534e; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-red :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-red :where(a code):not(:where([class~='not-prose'] *)) { - color: #dc2626; - } - - .\\\\32xl\\\\:prose-red :where(a code):not(:where(.not-prose *)) { - - color: #dc2626; - - } - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-orange :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-orange :where(a code):not(:where([class~='not-prose'] *)) { - color: #ea580c; - } - - .\\\\32xl\\\\:prose-orange :where(a code):not(:where(.not-prose *)) { - - color: #ea580c; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-amber :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-amber :where(a code):not(:where([class~='not-prose'] *)) { - color: #d97706; - } - - .\\\\32xl\\\\:prose-amber :where(a code):not(:where(.not-prose *)) { - - color: #d97706; - - } - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-yellow :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where([class~='not-prose'] *)) { - color: #ca8a04; - } - - .\\\\32xl\\\\:prose-yellow :where(a code):not(:where(.not-prose *)) { - - color: #ca8a04; - - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .\\\\32xl\\\\:prose-lime :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-lime :where(a code):not(:where([class~='not-prose'] *)) { - color: #65a30d; - } - - .\\\\32xl\\\\:prose-lime :where(a code):not(:where(.not-prose *)) { - - color: #65a30d; - - } - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .\\\\32xl\\\\:prose-green :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-green :where(a code):not(:where([class~='not-prose'] *)) { - color: #16a34a; - } - - .\\\\32xl\\\\:prose-green :where(a code):not(:where(.not-prose *)) { - - color: #16a34a; - - } - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-emerald :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where([class~='not-prose'] *)) { - color: #059669; - } - - .\\\\32xl\\\\:prose-emerald :where(a code):not(:where(.not-prose *)) { - - color: #059669; - - } - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .\\\\32xl\\\\:prose-teal :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-teal :where(a code):not(:where([class~='not-prose'] *)) { - color: #0d9488; - } - - .\\\\32xl\\\\:prose-teal :where(a code):not(:where(.not-prose *)) { - - color: #0d9488; - - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-cyan :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where([class~='not-prose'] *)) { - color: #0891b2; - } - - .\\\\32xl\\\\:prose-cyan :where(a code):not(:where(.not-prose *)) { - - color: #0891b2; - - } - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-sky :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-sky :where(a code):not(:where([class~='not-prose'] *)) { - color: #0284c7; - } - - .\\\\32xl\\\\:prose-sky :where(a code):not(:where(.not-prose *)) { - - color: #0284c7; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-blue :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-blue :where(a code):not(:where([class~='not-prose'] *)) { - color: #2563eb; - } - - .\\\\32xl\\\\:prose-blue :where(a code):not(:where(.not-prose *)) { - - color: #2563eb; - - } - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-indigo :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where([class~='not-prose'] *)) { - color: #4f46e5; - } - - .\\\\32xl\\\\:prose-indigo :where(a code):not(:where(.not-prose *)) { - - color: #4f46e5; - - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .\\\\32xl\\\\:prose-violet :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-violet :where(a code):not(:where([class~='not-prose'] *)) { - color: #7c3aed; - } - - .\\\\32xl\\\\:prose-violet :where(a code):not(:where(.not-prose *)) { - - color: #7c3aed; - - } - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-purple :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-purple :where(a code):not(:where([class~='not-prose'] *)) { - color: #9333ea; - } - - .\\\\32xl\\\\:prose-purple :where(a code):not(:where(.not-prose *)) { - - color: #9333ea; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where([class~='not-prose'] *)) { - color: #c026d3; - } - - .\\\\32xl\\\\:prose-fuchsia :where(a code):not(:where(.not-prose *)) { - - color: #c026d3; - - } - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-pink :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-pink :where(a code):not(:where([class~='not-prose'] *)) { - color: #db2777; - } - - .\\\\32xl\\\\:prose-pink :where(a code):not(:where(.not-prose *)) { - - color: #db2777; - - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { - - color: #e11d48; - - } - - .\\\\32xl\\\\:prose-rose :where(a code):not(:where(.not-prose *)) { + - .\\\\32xl\\\\:prose-rose :where(a code):not(:where([class~='not-prose'] *)) { - color: #e11d48; - } - } @@ -72786,51 +40449,6 @@ it('should be possible to merge values', async () => { + background-color: red; - --- - - - color: #111827; - + color: green; - - --- - - + background-color: red; - - --- - - - color: #111827; - + color: green; - - --- - - + background-color: red; - - --- - - - color: #111827; - + color: green; - - --- - - + background-color: red; - - --- - - - color: #111827; - + color: green; - - --- - - + background-color: red; - - --- - - - color: #111827; - + color: green; - - --- - - + background-color: red; - " `) }) @@ -72886,31 +40504,6 @@ it('should be possible to only update a single value from an existing definition - font-weight: 500; + font-weight: 600; - --- - - - font-weight: 500; - + font-weight: 600; - - --- - - - font-weight: 500; - + font-weight: 600; - - --- - - - font-weight: 500; - + font-weight: 600; - - --- - - - font-weight: 500; - + font-weight: 600; - - --- - - - font-weight: 500; - + font-weight: 600; - " `) }) @@ -72960,26 +40553,6 @@ it('should be possible to only update a single value from a different modifier', + font-weight: 600; - --- - - + font-weight: 600; - - --- - - + font-weight: 600; - - --- - - + font-weight: 600; - - --- - - + font-weight: 600; - - --- - - + font-weight: 600; - " `) }) @@ -73070,56 +40643,6 @@ it('should be possible to override backticks for the inline `code` tag', async ( - content: '\`'; + content: ''; - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - - --- - - - content: '\`'; - + content: ''; - " `) }) @@ -73144,95 +40667,59 @@ it('should be possible to add colors without 600 and still get default and custo ).toMatchInlineSnapshot(` " - + .prose-darkish-green :where(a):not(:where(.not-prose *)) { + + .prose-darkish-green :where(a):not(:where([class~='not-prose'] *)) { + color: #55a855; + } - + .prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .prose-darkish-green :where(a code):not(:where([class~='not-prose'] *)) { + color: #55a855; + } --- + } - + .sm\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - - --- - - + .sm\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .sm\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .sm\\\\:prose-darkish-green :where(a):not(:where([class~='not-prose'] *)) { + color: #55a855; + } - + .sm\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .sm\\\\:prose-darkish-green :where(a code):not(:where([class~='not-prose'] *)) { + color: #55a855; - + } --- + } - + .md\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .md\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { + + .md\\\\:prose-darkish-green :where(a):not(:where([class~='not-prose'] *)) { + color: #55a855; + } - + .md\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { - + color: #55a855; - - --- - - + .md\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .md\\\\:prose-darkish-green :where(a code):not(:where([class~='not-prose'] *)) { + color: #55a855; - + } --- + } - + .lg\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .lg\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .lg\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .lg\\\\:prose-darkish-green :where(a):not(:where([class~='not-prose'] *)) { + color: #55a855; + } - + .lg\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .lg\\\\:prose-darkish-green :where(a code):not(:where([class~='not-prose'] *)) { + color: #55a855; --- + } - + .xl\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .xl\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .xl\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .xl\\\\:prose-darkish-green :where(a):not(:where([class~='not-prose'] *)) { + color: #55a855; --- - + .xl\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .xl\\\\:prose-darkish-green :where(a code):not(:where([class~='not-prose'] *)) { + color: #55a855; + } --- + } - + .\\\\32xl\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .\\\\32xl\\\\:prose-darkish-green :where(a):not(:where(.not-prose *)) { - + color: #55a855; - + } - + .\\\\32xl\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .\\\\32xl\\\\:prose-darkish-green :where(a):not(:where([class~='not-prose'] *)) { + color: #55a855; + } - + .\\\\32xl\\\\:prose-darkish-green :where(a code):not(:where(.not-prose *)) { + + .\\\\32xl\\\\:prose-darkish-green :where(a code):not(:where([class~='not-prose'] *)) { + color: #55a855; "