koel/resources/assets/css/partials/tooltip.pcss

13 lines
327 B
Text
Raw Normal View History

.tooltip {
2024-04-04 22:20:42 +00:00
@apply opacity-0 text-white/80 w-max absolute top-0 left-0 bg-black px-3 py-2 rounded-md pointer-events-none
drop-shadow z-[9999] no-hover:hidden;
&.show {
2024-04-04 22:20:42 +00:00
@apply opacity-100 transition-opacity duration-500 ease-in-out;
}
&-arrow {
2024-04-04 22:20:42 +00:00
@apply absolute bg-black w-[8px] aspect-square rotate-45;
}
}