Skip to content

Commit

Permalink
feat(ui): make buttons appear on top when active/hover/focus
Browse files Browse the repository at this point in the history
  • Loading branch information
jahow committed Sep 12, 2024
1 parent 83b0242 commit 4ac94ad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tailwind.base.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@
p-[--padding] rounded-[--rounded] w-[--width] h-[--height] overflow-hidden
bg-[--background] transition-all duration-100
outline-none
disabled:opacity-50 disabled:pointer-events-none;
relative
disabled:opacity-50 disabled:pointer-events-none
focus:z-10 active:z-10 hover:z-10;
}
/* makes sure icons will not make the buttons grow vertically */
.gn-ui-btn mat-icon.mat-icon {
Expand Down

0 comments on commit 4ac94ad

Please sign in to comment.