/**
 * 이 파일은 아이모듈의 일부입니다. (https://www.imodules.io)
 *
 * 아이모듈 absolute 스타일시트를 정의한다.
 * 
 * @file /app/resources/styles/Absolute.css
 * @author sungjin <esung246@naddle.net>
 * @license MIT License
 * @modified 2026. 3. 6.
 */
body {
    &[data-frame='site'],
    &[data-frame='context'] {
        > div[data-role='absolutes'] {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 100000;

            > div[data-role='absolute'] {
                position: absolute;
            }
        }

        &:has(div[data-role='absolutes']) {
            > div[data-role='scrollbar'] {
                display: none;
            }

            overflow: hidden;
        }
    }
}
