Spaces:
Sleeping
Sleeping
File size: 234 Bytes
e66cfb4 | 1 2 3 4 5 6 7 8 9 10 11 | /* 把任何誤蓋在 ggb-wrap 上的透明層都失效 */
.ggb-wrap * {
pointer-events: auto;
}
.ggb-wrap::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none; /* 確保沒有匿名覆蓋層攔截 */
}
|