49 lines
857 B
CSS
49 lines
857 B
CSS
/* Custom Overrides - 전역 폰트 크기 조정 */
|
|
|
|
/* 폰트 크기 변수 정의 */
|
|
:root {
|
|
--base-font-size: 14px;
|
|
--body-font-size: 0.9rem;
|
|
--component-font-size: 0.8rem;
|
|
}
|
|
|
|
/* 기본 폰트 크기 설정 */
|
|
html {
|
|
font-size: var(--base-font-size);
|
|
}
|
|
|
|
body {
|
|
font-size: var(--body-font-size);
|
|
}
|
|
|
|
/* 주요 컴포넌트 폰트 크기 조정 */
|
|
.card-body,
|
|
.table,
|
|
.form-control,
|
|
.btn {
|
|
font-size: var(--component-font-size);
|
|
}
|
|
|
|
/* Select Box 폰트 크기 */
|
|
select,
|
|
select.form-control,
|
|
select.form-select {
|
|
font-size: var(--component-font-size);
|
|
}
|
|
|
|
select option {
|
|
font-size: var(--component-font-size);
|
|
}
|
|
|
|
/* 테이블 셀 폰트 크기 */
|
|
.table td,
|
|
.table th {
|
|
font-size: var(--component-font-size);
|
|
}
|
|
|
|
/* 모달 및 경고창 폰트 크기 */
|
|
.modal-body,
|
|
.alert {
|
|
font-size: var(--component-font-size);
|
|
}
|