mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
UIUX: Fixed tooltip not overlaying (#2116)
* fixed tooltip not overlaying * fix via style.css change * rebuilt output.css --------- Co-authored-by: moneymanolis <moneymanolis@protonmail.com>
This commit is contained in:
parent
44405dae7e
commit
49ace84f4a
2 changed files with 10 additions and 1 deletions
|
|
@ -744,6 +744,7 @@ select {
|
|||
*/
|
||||
|
||||
.button {
|
||||
z-index: 10;
|
||||
margin-bottom: 0.75rem;
|
||||
display: flex;
|
||||
height: 2.75rem;
|
||||
|
|
@ -773,6 +774,10 @@ select {
|
|||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.tooltip:hover .tooltip__box {
|
||||
z-index: 40;
|
||||
}
|
||||
|
||||
.button img {
|
||||
height: 1.75rem;
|
||||
width: 1.75rem;
|
||||
|
|
|
|||
|
|
@ -173,7 +173,11 @@
|
|||
*/
|
||||
|
||||
.button {
|
||||
@apply h-11 rounded-xl text-lg flex items-center space-x-2 justify-center bg-dark-600 hover:opacity-80 px-10 cursor-pointer w-[calc(688px/2)] mb-3;
|
||||
@apply h-11 rounded-xl text-lg flex items-center space-x-2 justify-center bg-dark-600 hover:opacity-80 px-10 cursor-pointer w-[calc(688px/2)] mb-3 z-10;
|
||||
}
|
||||
|
||||
.tooltip:hover .tooltip__box {
|
||||
@apply z-40;
|
||||
}
|
||||
|
||||
.button img {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue