fix: Bubble typography (#10653)

This commit is contained in:
@@ -43,7 +43,7 @@ const tailwindConfig = {
|
||||
interDisplay: ['Inter Display', ...defaultSansFonts],
|
||||
},
|
||||
typography: {
|
||||
email: {
|
||||
bubble: {
|
||||
css: {
|
||||
color: 'rgb(var(--slate-12))',
|
||||
lineHeight: '1.6',
|
||||
@@ -100,26 +100,37 @@ const tailwindConfig = {
|
||||
color: 'rgb(var(--text-blue))',
|
||||
textDecoration: 'underline',
|
||||
},
|
||||
ul: {
|
||||
paddingInlineStart: '0.625em',
|
||||
},
|
||||
ol: {
|
||||
paddingInlineStart: '0.625em',
|
||||
},
|
||||
'ul li': {
|
||||
margin: '0 0 0.5em 1.5em',
|
||||
margin: '0 0 0.5em 1em',
|
||||
listStyleType: 'disc',
|
||||
},
|
||||
'ol li': {
|
||||
margin: '0 0 0.5em 1.5em',
|
||||
margin: '0 0 0.5em 1em',
|
||||
listStyleType: 'decimal',
|
||||
},
|
||||
blockquote: {
|
||||
fontStyle: 'italic',
|
||||
color: 'rgb(var(--slate-11))',
|
||||
borderLeft: `4px solid rgb(var(--border-strong))`,
|
||||
borderLeft: `4px solid rgb(var(--black-alpha-1))`,
|
||||
paddingLeft: '1em',
|
||||
},
|
||||
code: {
|
||||
backgroundColor: 'rgb(var(--alpha-3))',
|
||||
color: 'rgb(var(--solid-amber))',
|
||||
color: 'rgb(var(--slate-11))',
|
||||
padding: '0.2em 0.4em',
|
||||
borderRadius: '4px',
|
||||
fontSize: '0.95em',
|
||||
'&::before': {
|
||||
content: `none`,
|
||||
},
|
||||
'&::after': {
|
||||
content: `none`,
|
||||
},
|
||||
},
|
||||
pre: {
|
||||
backgroundColor: 'rgb(var(--alpha-3))',
|
||||
|
||||
Reference in New Issue
Block a user