Skip to content

Commit

Permalink
Make shelf buttons more obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
phildenhoff committed Oct 14, 2024
1 parent 1890529 commit b27a466
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/organisms/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ const SidebarPure = ({
<Title order={5}>My shelves</Title>
{shelves.map(({ title, LinkComponent }) => (
<LinkComponent key={title}>
<Button variant="transparent" justify="flex-start">
<Button variant="subtle" justify="flex-start" fullWidth>
{title}
</Button>
</LinkComponent>
Expand Down
5 changes: 5 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ body {
* {
cursor: default !important;
}

a:any-link {
text-decoration-line: none;
text-decoration: none;
}

0 comments on commit b27a466

Please sign in to comment.