Skip to content

Commit

Permalink
Fixed placement of new board icon
Browse files Browse the repository at this point in the history
  • Loading branch information
brodeur committed Dec 20, 2023
1 parent 6b37d1e commit f7e93df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/BoardMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<GroupParticipants/>
<h3 class="type-header">Boards</h3>
<div class="boards-section">
<div class="new-board" on:click={()=>newBoardDialog.open()} title="New Board"><SvgIcon color="white" size=25px icon=faSquarePlus style="margin-top:5px; margin-left: 15px;"/><span>New Board</span></div>
<div class="new-board" on:click={()=>newBoardDialog.open()} title="New Board"><SvgIcon color="white" size=25px icon=faSquarePlus style="margin-left: 15px;"/><span>New Board</span></div>
{#each $activeBoards.value as hash}
<div
on:click={()=>selectBoard(hash)}
Expand Down

0 comments on commit f7e93df

Please sign in to comment.