Skip to content

Commit d5320df

Browse files
committed
styling improvements
1 parent 047d6f5 commit d5320df

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

src/client/components/ChatV2/ChatV2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ const LeftMenu = ({
619619
flexDirection: 'column',
620620
}}
621621
>
622-
<Box px="1rem">
622+
<Box p="1rem">
623623
{course && <ChatInfo course={course} />}
624624
<Box sx={{ display: 'flex', flexDirection: 'column', gap: '0.6rem', mb: '2rem' }}>
625625
<OutlineButtonBlack startIcon={<RestartAltIcon />} onClick={handleReset} id="empty-conversation-button">

src/client/components/Footer/index.tsx

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@ const supportEmail = '[email protected]'
1212

1313
const styles = {
1414
supportBox: {
15-
py: '1rem',
16-
px: '1rem',
1715
display: 'flex',
1816
justifyContent: 'space-between',
1917
alignItems: 'center',
2018
},
21-
imageBox: {
22-
display: 'flex',
23-
flexDirection: 'column',
24-
alignItems: 'center',
25-
rowGap: '1rem',
26-
},
2719
}
2820

2921
const Footer = () => {
@@ -45,6 +37,8 @@ const Footer = () => {
4537
sx={{
4638
mt: 'auto',
4739
width: '100%',
40+
py: '1rem',
41+
px: '1rem',
4842
}}
4943
>
5044
<Box sx={styles.supportBox}>
@@ -60,12 +54,13 @@ const Footer = () => {
6054
</Typography>
6155
<Typography variant="caption">{t('footer:version', { version: changelog?.[0]?.version, publishedAgo })}</Typography>
6256
</Box>
57+
</Box>
58+
<Box display="flex" flexDirection="column">
59+
{/*<Typography variant="caption">Locally and responsibly produced software from University of Helsinki.</Typography>*/}
6360

64-
<Box sx={styles.imageBox}>
65-
<Link href="https://toska.dev" target="_blank" rel="noopener" underline="hover">
66-
<img src={toskaColor} alt="Toska" width="40" />
67-
</Link>
68-
</Box>
61+
<Link href="https://toska.dev" target="_blank" rel="noopener" underline="hover">
62+
<img src={toskaColor} alt="Toska" width="40" />
63+
</Link>
6964
</Box>
7065
</Box>
7166
)

0 commit comments

Comments
 (0)