
solve this ticket : https://app.ora.pm/p/fb56ed95daa7456b888d266a050b9afa?v=86662&s=28293&t=k&c=657791f3b1c64e6cbbf22f9378c0bdae Co-authored-by: OxSaitama <arnaud.daubernatali@smart-chain.fr>
34 lines
469 B
SCSS
34 lines
469 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
min-width: 100px;
|
|
max-width: 320px;
|
|
background: $white;
|
|
border-radius: 5px !important;
|
|
position: fixed;
|
|
transition: opacity 0.2s ease-in-out;
|
|
text-align: left;
|
|
filter: drop-shadow($shadow-tooltip);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
img {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
}
|
|
|
|
.root-content {
|
|
padding: 12px;
|
|
}
|
|
|
|
.show {
|
|
opacity: 1;
|
|
}
|
|
|
|
.carrot {
|
|
position: absolute;
|
|
right: 20px;
|
|
margin-top: -4px;
|
|
fill: $white;
|
|
}
|