feat: add style to header container

This commit is contained in:
RadoslavDimchev 2023-12-04 19:31:11 +02:00
parent 21901e3840
commit 27173fdfe3

View File

@ -1,4 +1,3 @@
import { XStack } from 'tamagui'
import NimbusLogo from '../Logos/NimbusLogo'
import TagContainer from './TagContainer'
@ -8,10 +7,17 @@ type HeaderProps = {
const Header = ({ selectedTag }: HeaderProps) => {
return (
<XStack justifyContent="space-between" py={'25px'} mt={'4.4rem'}>
<div
style={{
display: 'flex',
justifyContent: 'space-between',
paddingBottom: '25px',
marginTop: '4.4rem',
}}
>
<NimbusLogo />
<TagContainer selectedTag={selectedTag} />
</XStack>
</div>
)
}