mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-10 18:36:50 +00:00
feat: add style to header container
This commit is contained in:
parent
21901e3840
commit
27173fdfe3
@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user