Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/nowait-admin/src/pages/AdminOrders/OrderCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const PaymentCard = ({
{/* PaymentCheckModal 오버레이 */}
{showPaymentCheckModal && (
<div
className="fixed inset-0 bg-black/30 flex items-center justify-center z-50"
className="fixed inset-0 bg-black/30 flex items-center justify-center z-50 max-[450px]:px-8.75"
onClick={handleClosePaymentCheckModal}
>
<PaymentCheckModal
Expand Down Expand Up @@ -315,7 +315,7 @@ const CookCard = ({
{/* CookCompleteModal 오버레이 */}
{showCookCompleteModal && (
<div
className="fixed inset-0 bg-black/30 flex items-center justify-center z-50"
className="fixed inset-0 bg-black/30 flex items-center justify-center z-50 max-[450px]:px-8.75"
onClick={handleCloseCookCompleteModal}
>
<CookCompleteModal
Expand Down Expand Up @@ -422,7 +422,7 @@ const CookedCard = ({
{/* CookedModal 오버레이 */}
{showCookedModal && (
<div
className="fixed inset-0 bg-black/30 flex items-center justify-center z-50"
className="fixed inset-0 bg-black/30 flex items-center justify-center z-50 max-[450px]:px-8.75"
onClick={handleCloseCookedModal}
>
<CookedModal
Expand Down
2 changes: 1 addition & 1 deletion apps/nowait-admin/src/pages/AdminOrders/OrderPageModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const PaymentCheckModal = ({
</div>
</div>

<div className="flex flex-row mt-7.5 bg-black-15 rounded-[14px] px-3.5 py-3.5 w-70 gap-2.5">
<div className="flex flex-row mt-7.5 bg-black-15 rounded-[14px] px-3.5 py-3.5 w-70 gap-2.5 max-[450px]:w-60">
<div
className="flex rounded-full w-9 h-9 items-center justify-center text-title-18-semibold text-white-100"
style={{ backgroundColor: getTableBackgroundColor(tableNumber) }}
Expand Down