메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

모듈:FloatingUI/styles.css

이터널리턴 이스포츠 위키
Mongsil (토론 | 기여)님의 2024년 12월 2일 (월) 22:16 판 (새 문서: .t-floatingui { max-width: 50ch; →‎Needed when this is a span element: display: block; } →‎* Sync with InfoboxNeue styles * TODO: Refactor InfoboxNeue and FloatingUI styles into the same design system: .t-floatingui-section { display: grid; gap: 2px var(--space-xs); grid-auto-rows: max-content; } .t-floatingui-section--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .t-floatingui-section--cols-2 .t-floatingui-data { text-align: end; } .t-flo...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
.t-floatingui {
	max-width: 50ch;
	/* Needed when this is a span element */
	display: block;
}

/* 
 * Sync with InfoboxNeue styles
 * TODO: Refactor InfoboxNeue and FloatingUI styles into the same design system
 */
.t-floatingui-section {
	display: grid;
	gap: 2px var(--space-xs);
	grid-auto-rows: max-content;
}

.t-floatingui-section--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.t-floatingui-section--cols-2 .t-floatingui-data {
    text-align: end;
}

.t-floatingui-section + .t-floatingui-section {
	margin-top: var(--space-xs);
	padding-top: var(--space-xs);
	border-top: 1px solid var(--border-color-base);
}

.t-floatingui-data {
	font-weight: var(--font-weight-medium);
}

.t-floatingui-label {
	letter-spacing: 0.05em;
}

.t-floatingui-desc,
.t-floatingui-label {
	color: var(--color-subtle);
	font-size: var(--font-size-x-small);
}