반응형 웹 디자인 적용

This commit is contained in:
2026-07-07 10:06:13 +09:00
parent e6882b158a
commit bd921528f4
11 changed files with 350 additions and 28 deletions
@@ -63,15 +63,15 @@ export function ExtensionRequestsSection({
}
return (
<section className="rounded-lg border bg-background p-5">
<div className="flex items-start justify-between gap-2">
<section className="overflow-hidden rounded-lg border bg-background p-5">
<div className="flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between">
<div>
<h2 className="text-base font-semibold"> </h2>
<p className="mt-1 text-sm text-muted-foreground">
{totalCount.toLocaleString()} 20
</p>
</div>
<div className="flex flex-col items-end gap-1">
<div className="flex flex-col items-start gap-1 sm:items-end">
<Button
disabled={isDisabled || !isPaidAccount}
onClick={() => void handleCreate()}
@@ -219,7 +219,7 @@ function LogPagination({
{showNav ? (
<nav
aria-label="처리 로그 페이지"
className="flex flex-wrap items-center gap-1.5"
className="self-end flex flex-wrap items-center gap-1.5 sm:self-auto"
>
{!hasFirstPage ? (
<Button
@@ -246,7 +246,7 @@ function StudentPagination({
</label>
{showNav ? <nav
aria-label="학생 목록 페이지"
className="flex flex-wrap items-center gap-1.5"
className="self-end flex flex-wrap items-center gap-1.5 sm:self-auto"
>
{!hasFirstPage ? (
<Button
@@ -88,16 +88,16 @@ export function UpgradeRequestsSection({
}
return (
<section className="rounded-lg border bg-background p-5">
<div className="flex items-start justify-between gap-2">
<section className="overflow-hidden rounded-lg border bg-background p-5">
<div className="flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between">
<div>
<h2 className="text-base font-semibold"> </h2>
<p className="mt-1 text-sm text-muted-foreground">
{totalCount.toLocaleString()} 20
</p>
</div>
<div className="flex flex-col items-end gap-1">
<div className="flex items-center gap-2">
<div className="flex flex-col items-start gap-1 sm:items-end">
<div className="flex flex-wrap items-center gap-2">
<select
className={selectClass}
disabled={isDisabled}
+1 -1
View File
@@ -191,7 +191,7 @@ export default async function MaestrosPage({
</form>
<nav
aria-label="마에스트로 목록 페이지"
className="flex flex-wrap items-center gap-1.5"
className="self-end flex flex-wrap items-center gap-1.5 sm:self-auto"
>
{!hasFirstPage ? (
<Link