Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vincelwt committed Jul 9, 2024
1 parent 695234d commit 8635ede
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
7 changes: 6 additions & 1 deletion packages/frontend/components/layout/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,14 @@ function NavbarLink({
<NavLink
w="100%"
pl={5}
styles={{
label: {
fontSize: 14,
},
}}
onClick={onClick || (() => handleNavigation(link))}
h={33}
label={<Text size={13}>{`${label}${soon ? " (soon)" : ""}`}</Text>}
label={`${label}${soon ? " (soon)" : ""}`}
disabled={disabled || soon}
active={active}
leftSection={
Expand Down
20 changes: 11 additions & 9 deletions packages/frontend/pages/users/[[...id]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,15 +326,17 @@ export default function Users() {
<Stack h={"calc(100vh - var(--navbar-with-filters-size))"}>
<NextSeo title="Users" />

<Card withBorder p={2} px="sm">
<SearchBar
query={search}
ml={-8}
setQuery={setSearch}
variant="unstyled"
size="sm"
/>
</Card>
<Flex justify="space-between" align="center">
<Card withBorder p={2} px="sm">
<SearchBar
query={search}
ml={-8}
setQuery={setSearch}
variant="unstyled"
size="sm"
/>
</Card>
</Flex>

<DataTable
type="users"
Expand Down

0 comments on commit 8635ede

Please sign in to comment.