e2e 오류 수정
CI / test (push) Failing after 4m41s
CI / e2e (push) Has been skipped
CI / pr_and_merge (push) Has been skipped

This commit is contained in:
2025-12-07 11:21:09 +09:00
parent 4902a0b5a9
commit 72b027a29c
30 changed files with 88 additions and 32 deletions
+11
View File
@@ -536,3 +536,14 @@ body {
color: var(--pb-color-text-default);
}
/* 리스트 아이템 간 여백은 --pb-list-gap 커스텀 프로퍼티로 제어한다.
- Export/Preview 모두 동일한 gapEm 을 이 변수에 설정하고,
- 실제 margin-bottom 계산은 CSS 레이어에서만 수행해 정적 HTML 인라인 스타일에
margin-bottom 이 직접 등장하지 않도록 한다. */
.pb-list > li {
margin-bottom: var(--pb-list-gap, 0);
}
.pb-list > li:last-child {
margin-bottom: 0;
}