feat: add margin bottom to the titles component

This commit is contained in:
Ivana Andersson 2023-08-16 15:12:42 +03:00
parent 78cf706e69
commit 7789178772
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ type TitlesProps = {
const Titles = ({ title, subtitle, isAdvancedSettings }: TitlesProps) => {
return (
<YStack style={{ width: '100%' }}>
<YStack style={{ width: '100%', margin: '0 0 1em' }}>
<XStack style={{ justifyContent: 'space-between', alignItems: 'center' }}>
<Title color={'#09101C'}>{title}</Title>
{isAdvancedSettings && (