Skip to content

Commit 085e1b3

Browse files
committed
Update v.1.0.1
1 parent 9e077df commit 085e1b3

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

src/components/navbar/NavbarLinksAdmin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default function HeaderLinks(props) {
9393
<Menu>
9494
<MenuButton p='0px'>
9595
<Icon
96-
display='flex'
96+
mt='6px'
9797
as={MdNotificationsNone}
9898
color={navbarIcon}
9999
w='18px'
@@ -151,7 +151,7 @@ export default function HeaderLinks(props) {
151151
<Menu>
152152
<MenuButton p='0px'>
153153
<Icon
154-
display='flex'
154+
mt='6px'
155155
as={MdInfoOutline}
156156
color={navbarIcon}
157157
w='18px'

src/views/admin/default/components/DailyTraffic.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,15 @@ export default function DailyTraffic(props) {
2323
<Card align='center' direction='column' w='100%' {...rest}>
2424
<Flex justify='space-between' align='start' px='10px' pt='5px'>
2525
<Flex flexDirection='column' align='start' me='20px'>
26-
<Text color='secondaryGray.600' fontSize='sm' fontWeight='500'>
27-
Daily Traffic
28-
</Text>
26+
<Flex w='100%'>
27+
<Text
28+
me='auto'
29+
color='secondaryGray.600'
30+
fontSize='sm'
31+
fontWeight='500'>
32+
Daily Traffic
33+
</Text>
34+
</Flex>
2935
<Flex align='end'>
3036
<Text
3137
color={textColor}

src/views/admin/profile/components/Storage.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ export default function Banner(props) {
2424
const box = useColorModeValue("secondaryGray.300", "whiteAlpha.100");
2525
return (
2626
<Card mb={{ base: "0px", lg: "20px" }} align='center'>
27-
<Menu ms='auto' />
27+
<Flex w='100%'>
28+
<Menu ms='auto' />
29+
</Flex>
2830
<IconBox
2931
mx='auto'
3032
h='100px'

src/views/admin/profile/components/Upload.js

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function Upload(props) {
4242
</Box>
4343
}
4444
/>
45-
<Flex direction='column' align='start' pe='44px'>
45+
<Flex direction='column' pe='44px'>
4646
<Text
4747
color={textColorPrimary}
4848
fontWeight='bold'
@@ -60,13 +60,18 @@ export default function Upload(props) {
6060
Stay on the pulse of distributed projects with an anline whiteboard
6161
to plan, coordinate and discuss
6262
</Text>
63-
<Button
64-
mb='50px'
65-
mt={{ base: "20px", "2xl": "auto" }}
66-
variant='brand'
67-
fontWeight='500'>
68-
Publish now
69-
</Button>
63+
<Flex w='100%'>
64+
<Button
65+
me='100%'
66+
mb='50px'
67+
w='140px'
68+
minW='140px'
69+
mt={{ base: "20px", "2xl": "auto" }}
70+
variant='brand'
71+
fontWeight='500'>
72+
Publish now
73+
</Button>
74+
</Flex>
7075
</Flex>
7176
</Flex>
7277
</Card>

0 commit comments

Comments
 (0)