We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb7d38 commit 0d3f1ebCopy full SHA for 0d3f1eb
1 file changed
apps/client/src/components/layouts/global/app-header.tsx
@@ -85,15 +85,16 @@ export function AppHeader() {
85
/>
86
</Tooltip>
87
88
- <Text
89
- size="lg"
90
- fw={600}
91
- style={{ cursor: "pointer", userSelect: "none", display: 'flex', alignItems: 'center' }}
92
- component={Link}
93
- to="/home"
94
- >
95
- <img className="text-center" alt="editor" src={chipLogo} width="30%" />
96
- </Text>
+ <Link to="/home" className={classes.brand} aria-label="Docmost">
+ <Box className={classes.brandIcon}>
+ <img
+ src={chipLogo}
+ alt="Docmost"
+ height={24}
+ style={{ width: "auto" }}
+ />
+ </Box>
97
+ </Link>
98
99
<Group ml={50} gap={5} className={classes.links} visibleFrom="sm">
100
{items}
0 commit comments