701 화면 수정
This commit is contained in:
48
public/architectui/assets/styles/custom.css
Normal file
48
public/architectui/assets/styles/custom.css
Normal file
@@ -0,0 +1,48 @@
|
||||
/* 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);
|
||||
}
|
||||
Reference in New Issue
Block a user