mirror of
https://github.com/quantum5/qcal.git
synced 2025-08-07 01:09:34 -04:00
21 lines
398 B
SCSS
21 lines
398 B
SCSS
|
@media (pointer: coarse), (hover: none) {
|
||
|
.MobileTooltip {
|
||
|
position: relative;
|
||
|
display: inline-flex;
|
||
|
justify-content: center;
|
||
|
|
||
|
&:focus::after {
|
||
|
content: attr(title);
|
||
|
position: absolute;
|
||
|
top: 90%;
|
||
|
left: 0;
|
||
|
color: #000;
|
||
|
background-color: #fff;
|
||
|
border: 1px solid;
|
||
|
width: fit-content;
|
||
|
padding: 3px;
|
||
|
z-index: 10;
|
||
|
}
|
||
|
}
|
||
|
}
|