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
2 changes: 1 addition & 1 deletion apps/nowait-user/src/pages/home/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const HomePage = () => {
<div className="mt-2.5">
<div
ref={scrollRef}
className="overflow-x-auto scrollbar-hide snap-x snap-mandatory"
className="overflow-x-auto scrollbar-hide snap-x snap-mandatory rounded-2xl"
>
<div className="flex">
{Array.from({ length: 3 }, (_, index) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface HomeWaitingCardProps {

const HomeWaitingCard = ({ storeName, queueNumber }: HomeWaitingCardProps) => {
return (
<div className="rounded-2xl bg-primary flex text-start pl-5.25 pb-2.75 relative overflow-hidden w-full">
<div className="bg-primary flex text-start pl-5.25 pb-2.75 relative overflow-hidden w-full">
<div className="flex flex-col">
<div className="mt-7 text-14-medium text-black-100">현재 내 순서</div>
<div className="mt-1 text-title-20-bold text-black-100">
Expand Down