fix: 기본코드관리 두 패널 2열 전환 기준 xl→lg (텍스트 100%에서도 좌우 배치)
워크스페이스 탭은 텍스트 크기를 zoom으로 조절하는데 zoom이 반응형 브레이크포인트에 영향을 줘서, 100%에선 1280px(xl) 미만이라 두 패널이 세로로 쌓였다. 기준을 lg(1024px)로 낮춰 100%에서도 좌우 2열로 표시.
This commit is contained in:
@@ -21,7 +21,7 @@ $stateBadge = static function (int $state): string {
|
|||||||
: '<span class="inline-block px-2 py-0.5 rounded-full text-[11px] font-medium bg-gray-100 text-gray-500">미사용</span>';
|
: '<span class="inline-block px-2 py-0.5 rounded-full text-[11px] font-medium bg-gray-100 text-gray-500">미사용</span>';
|
||||||
};
|
};
|
||||||
?>
|
?>
|
||||||
<div class="grid grid-cols-1 xl:grid-cols-2 gap-4">
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-4">
|
||||||
<!-- 기본코드 종류 -->
|
<!-- 기본코드 종류 -->
|
||||||
<section class="rounded-xl bg-white border border-gray-200 p-4 shadow-sm">
|
<section class="rounded-xl bg-white border border-gray-200 p-4 shadow-sm">
|
||||||
<div class="flex flex-wrap items-center justify-between gap-2 mb-3">
|
<div class="flex flex-wrap items-center justify-between gap-2 mb-3">
|
||||||
|
|||||||
Reference in New Issue
Block a user