style(fe): add standard flex & grid layout utility classes - .ks-flex-column-1, .ks-flex-row-1, .ks-overflow-auto

This commit is contained in:
2026-08-15 23:56:34 +09:00
parent b299939cb8
commit a1eccadca1
+7
View File
@@ -39,6 +39,13 @@ a { color: var(--ks-color-action); }
.ks-muted { color: var(--ks-color-text-muted); }
.ks-danger-text { color: var(--ks-color-danger); }
/* Standard Flex & Grid Layout Classes (높이 전파 표준) */
.ks-flex-column-1 { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.ks-flex-row-1 { display: flex; flex-direction: row; flex: 1; min-height: 0; }
.ks-overflow-auto { overflow-y: auto; }
.ks-overflow-x-auto { overflow-x: auto; }
.ks-overflow-hidden { overflow: hidden; }
/* Global Ultra-Dense Form Control & Button Density Standardization (전역 통일 규격) */
input[type="text"], input[type="number"], input[type="date"], select, textarea, .p-inputtext, .p-select, .p-dropdown, .ks-text-field__input, .ks-select__trigger, .ks-multi-select__trigger {
height: var(--ks-control-height) !important;