bigbuffet-rw/app/soapbox/components/ui/tooltip/tooltip.css

13 lines
435 B
CSS
Raw Normal View History

2022-03-21 11:09:01 -07:00
:root {
--reach-tooltip: 1;
}
[data-reach-tooltip] {
@apply pointer-events-none absolute px-2.5 py-1.5 rounded shadow whitespace-nowrap text-xs font-medium bg-gray-800 text-gray-100 dark:bg-gray-100 dark:text-gray-900;
2022-05-12 13:56:09 -07:00
z-index: 100;
2022-03-21 11:09:01 -07:00
}
2022-07-06 11:19:51 -07:00
[data-reach-tooltip-arrow] {
@apply absolute z-50 w-0 h-0 border-l-8 border-solid border-l-transparent border-r-8 border-r-transparent border-b-8 border-b-gray-800 dark:border-b-gray-100;
2022-07-06 11:19:51 -07:00
}