Skip to content

Commit

Permalink
fix(software): fix tab colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenclaw900 committed Feb 23, 2022
1 parent 33c5410 commit a808c17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/src/pages/Software.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@
<button
class="border-1 border-b-0 border-gray-500 p-1 focus:outline-none"
on:click={() => (installTable = false)}
class:bg-gray-200={installTable}
class:dark:bg-gray-700={installTable}>Not installed</button
class:bg-gray-200={!installTable}
class:dark:bg-gray-700={!installTable}>Not installed</button
>
<button
class="border-1 border-b-0 border-gray-500 p-1 focus:outline-none"
Expand Down

0 comments on commit a808c17

Please sign in to comment.