mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Padding on empty note boxes
This commit is contained in:
parent
579bc45237
commit
3fdc199401
1 changed files with 2 additions and 2 deletions
|
|
@ -298,13 +298,13 @@ export function MarkdownNote(props: MarkdownNote): JSX.Element {
|
|||
paddingLeft:
|
||||
props.fillBackground && props.text
|
||||
? '10px'
|
||||
: props.fillBackground
|
||||
: !props.text
|
||||
? '5px'
|
||||
: '0px',
|
||||
paddingRight:
|
||||
props.fillBackground && props.text
|
||||
? '10px'
|
||||
: props.fillBackground
|
||||
: !props.text
|
||||
? '5px'
|
||||
: '0px',
|
||||
color: props.text ? '$thHighContrast' : '#898989',
|
||||
|
|
|
|||
Loading…
Reference in a new issue