Skip to content

Commit

Permalink
Merge branch 'develop' into 175-fancy-space-hero
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricschwyter authored Dec 18, 2022
2 parents 4680d32 + c4fb769 commit b3c2fdc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## **0.5.2** <sub><sup>2022-12-18 ([04d68ef...0738463](https://github.com/lumium-technologies/lumium/compare/04d68ef...0738463?diff=split))</sup></sub>

### Bug Fixes
##### `landing-page`
* mobile navigation, responsiveness ([08d0669](https://github.com/lumium-technologies/lumium/commit/08d0669))


## **0.5.1** <sub><sup>2022-12-17 ([89436fc...ded26c0](https://github.com/lumium-technologies/lumium/compare/89436fc...ded26c0?diff=split))</sup></sub>

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lumium-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumium-api",
"version": "0.5.1",
"version": "0.5.2",
"repository": {
"type": "git",
"url": "https://github.com/lumium-technologies/lumium"
Expand Down
2 changes: 1 addition & 1 deletion lumium-space/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumium-space",
"version": "0.5.1",
"version": "0.5.2",
"repository": {
"type": "git",
"url": "https://github.com/lumium-technologies/lumium"
Expand Down
16 changes: 7 additions & 9 deletions lumium-space/src/sections/landing/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ export const NavBar = () => {
px={{ base: 4 }}
align={'center'}>
<Flex
flex={{ base: 1, md: 'auto' }}
flex={{ base: 1, lg: 'auto' }}
ml={{ base: -2 }}
display={{ base: 'flex', md: 'none' }}>
display={{ base: 'flex', lg: 'none' }}>
<IconButton
onClick={onToggle}
icon={
Expand All @@ -61,20 +61,19 @@ export const NavBar = () => {
</Flex>
<Flex flex={{ base: 1 }} justify={{ base: 'center', md: 'start' }}>
<HStack>
<Link href="https://lumium.space/" maxW={"15%"} maxH={"50%"}>
<Link display={{ base: 'none', lg: 'flex' }} href="https://lumium.space/" width={"10rem"}>
<Image src={logo} alt="lumium logo" />
</Link>
<Spacer />
<Flex display={{ base: 'none', md: 'flex' }} ml={10}>
<Flex display={{ base: 'none', lg: 'flex' }} ml={10}>
<DesktopNav />
</Flex>
</HStack>
</Flex>
<Spacer maxW={'5%'} />

<Stack
flex={{ base: 1, md: 0 }}
justify={'flex-end'}
justify={'end'}
direction={'row'}
spacing={6}>
<Button onClick={toggleColorMode} data-cy="switchThemeButton">
Expand All @@ -91,7 +90,6 @@ export const NavBar = () => {
Sign In
</Button>
<Button
display={{ base: 'none', md: 'inline-flex' }}
fontSize={'sm'}
fontWeight={600}
color={'white'}
Expand Down Expand Up @@ -127,7 +125,7 @@ const DesktopNav = () => {
<Link
p={2}
href={navItem.href ?? '#'}
fontSize={'lg'}
fontSize={{base: 'md', 'xx-large': 'lg'}}
fontWeight={500}
color={linkColor}
_hover={{
Expand Down Expand Up @@ -197,7 +195,7 @@ const MobileNav = () => {
return (
<Stack
p={4}
display={{ md: 'none' }}>
display={{ lg: 'none' }}>
{NAV_ITEMS.map((navItem) => (
<MobileNavItem key={navItem.label} {...navItem} />
))}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumium",
"version": "0.5.1",
"version": "0.5.2",
"repository": {
"type": "git",
"url": "https://github.com/lumium-technologies/lumium"
Expand Down

0 comments on commit b3c2fdc

Please sign in to comment.