mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] format
This commit is contained in:
parent
b750a161e0
commit
c0481f47e2
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ export function getElementsPositionInDocument(el: Element) {
|
|||
if (!Number.isNaN(zIndex) && zIndex > highestZIndex) {
|
||||
highestZIndex = zIndex;
|
||||
}
|
||||
if(style.position === 'fixed') {
|
||||
if (style.position === 'fixed') {
|
||||
fixed = true;
|
||||
}
|
||||
current = current.parentNode;
|
||||
|
|
|
@ -90,7 +90,7 @@ export default {
|
|||
// to calculate, and are unlikely to change. If that turns out to be wrong, reconsider this.
|
||||
const { zIndex, fixed } = getElementsPositionInDocument(islandElement);
|
||||
tooltip.style.zIndex = highlight.style.zIndex = zIndex + '';
|
||||
if(fixed) {
|
||||
if (fixed) {
|
||||
tooltip.style.position = highlight.style.position = 'fixed';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue