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:
Paarth Agarwal 2023-02-13 15:27:27 +05:30 committed by GitHub
parent 44405dae7e
commit 49ace84f4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View file

@ -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;

View file

@ -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 {