Skip to content

Commit

Permalink
fix: all elements inside an app that consumes vibe had button with ac…
Browse files Browse the repository at this point in the history
…tive state that turns to 0.95 scale on active pseudo state
  • Loading branch information
YossiSaadi committed Mar 21, 2024
1 parent 1036205 commit 558f3fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
background-color: var(--primary-background-hover-color);
}

/* TODO track and remove, added because of specificity issue in MenuButton's button:active */
.header:active {
transform: scale(1);
}

.header .headerContent {
margin: 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
background-color: var(--primary-background-hover-color);
}

button:active {
.wrapper:active {
transform: scale(0.95);
}

Expand Down

0 comments on commit 558f3fc

Please sign in to comment.