29 lines
546 B
CSS
29 lines
546 B
CSS
/* laser.TLRB Layout Style - Dynamic Grid */
|
|
|
|
.layout-main-content {
|
|
width: 100%;
|
|
padding-top: 80px !important;
|
|
}
|
|
|
|
|
|
/* 행(Row) 스타일 */
|
|
.layout-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 20px; /* 행 사이 간격 */
|
|
gap: 20px; /* 열 사이 간격 */
|
|
}
|
|
|
|
.layout-row:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* 열(Column) 스타일 */
|
|
.layout-col {
|
|
flex: 1; /* 남은 공간을 균등하게 차지 */
|
|
min-width: 0; /* 내용물이 넘쳐도 레이아웃 깨짐 방지 */
|
|
}
|
|
|
|
/* 모바일 반응형 */
|
|
|