Skip to content

Commit

Permalink
make border wider, add removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
alpetric committed Jan 8, 2025
1 parent 60a233f commit 0b8c71a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/lib/components/sidebar/MenuButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
lightMode
? 'text-primary hover:bg-surface-hover '
: 'hover:bg-[#2A3648] text-primary-inverse dark:text-primary',
color ? 'border-2' : '',
color ? 'border-4' : '',
'transition-all',
$$props.class
)}
style={color ? `border-color: ${color}; padding: 0 calc(0.5rem - 2px);` : ''}
style={color ? `border-color: ${color}; padding: 0 calc(0.5rem - 4px);` : ''}
title={label}
>
{#if icon}
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lib/components/sidebar/WorkspaceMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
export let isCollapsed: boolean = false
// When used outside of the side bar, where links to workspace settings and such don't make as much sense.
export let strictWorkspaceSelect = false
async function toggleSwitchWorkspace(id: string) {
Expand Down

0 comments on commit 0b8c71a

Please sign in to comment.