mirror of
https://github.com/picocss/pico.git
synced 2025-04-22 09:26:14 -04:00
20 lines
283 B
SCSS
20 lines
283 B
SCSS
![]() |
/**
|
||
|
* Docs: Tooltips
|
||
|
*/
|
||
|
|
||
|
.tooltip-placement {
|
||
|
display: grid;
|
||
|
grid-template-columns: 100px 1fr 100px;
|
||
|
.top, .bottom{
|
||
|
grid-column-start: 2;
|
||
|
grid-column-end: 3;
|
||
|
}
|
||
|
.left{
|
||
|
grid-column-start: 1;
|
||
|
grid-column-end: 2;
|
||
|
}
|
||
|
.right{
|
||
|
grid-column-start: 3;
|
||
|
}
|
||
|
}
|