0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[ci] format

This commit is contained in:
Matthew Phillips 2023-11-30 22:05:45 +00:00 committed by astrobot-houston
parent b750a161e0
commit c0481f47e2
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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';
}