mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-11 02:46:25 +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 NimbusLogo from '../Logos/NimbusLogo'
|
||||||
import TagContainer from './TagContainer'
|
import TagContainer from './TagContainer'
|
||||||
|
|
||||||
@ -8,10 +7,17 @@ type HeaderProps = {
|
|||||||
|
|
||||||
const Header = ({ selectedTag }: HeaderProps) => {
|
const Header = ({ selectedTag }: HeaderProps) => {
|
||||||
return (
|
return (
|
||||||
<XStack justifyContent="space-between" py={'25px'} mt={'4.4rem'}>
|
<div
|
||||||
|
style={{
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'space-between',
|
||||||
|
paddingBottom: '25px',
|
||||||
|
marginTop: '4.4rem',
|
||||||
|
}}
|
||||||
|
>
|
||||||
<NimbusLogo />
|
<NimbusLogo />
|
||||||
<TagContainer selectedTag={selectedTag} />
|
<TagContainer selectedTag={selectedTag} />
|
||||||
</XStack>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user