mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 18:47:51 +00:00
fix: Fix bubble design in RTL (#10683)
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
@@ -109,15 +109,31 @@ const tailwindConfig = {
|
||||
'ul li': {
|
||||
margin: '0 0 0.5em 1em',
|
||||
listStyleType: 'disc',
|
||||
'[dir="rtl"] &': {
|
||||
margin: '0 1em 0.5em 0',
|
||||
},
|
||||
},
|
||||
'ol li': {
|
||||
margin: '0 0 0.5em 1em',
|
||||
listStyleType: 'decimal',
|
||||
'[dir="rtl"] &': {
|
||||
margin: '0 1em 0.5em 0',
|
||||
},
|
||||
},
|
||||
blockquote: {
|
||||
color: 'rgb(var(--slate-11))',
|
||||
borderLeft: `4px solid rgb(var(--black-alpha-1))`,
|
||||
paddingLeft: '1em',
|
||||
'[dir="rtl"] &': {
|
||||
borderLeft: 'none',
|
||||
paddingLeft: '0',
|
||||
borderRight: `4px solid rgb(var(--black-alpha-1))`,
|
||||
paddingRight: '1em',
|
||||
},
|
||||
'[dir="ltr"] &': {
|
||||
borderRight: 'none',
|
||||
paddingRight: '0',
|
||||
},
|
||||
},
|
||||
code: {
|
||||
backgroundColor: 'rgb(var(--alpha-3))',
|
||||
@@ -146,7 +162,7 @@ const tailwindConfig = {
|
||||
padding: '0.75em',
|
||||
color: 'rgb(var(--slate-12))',
|
||||
border: `none`,
|
||||
textAlign: 'left',
|
||||
textAlign: 'start',
|
||||
fontWeight: '600',
|
||||
},
|
||||
tr: {
|
||||
|
||||
Reference in New Issue
Block a user