diff --git a/src/app/[name]/(Main)/order/rate/[orderId]/page.tsx b/src/app/[name]/(Main)/order/rate/[orderId]/page.tsx
index 5bd2a48..f2afa22 100644
--- a/src/app/[name]/(Main)/order/rate/[orderId]/page.tsx
+++ b/src/app/[name]/(Main)/order/rate/[orderId]/page.tsx
@@ -1,6 +1,6 @@
'use client';
-import ToggleButton from '@/components/button/ToggleButton';
+import ToggleButton, { ToggleButtonClassNames } from '@/components/button/ToggleButton';
import TabContainer, { TabContainerClassNames, TabContainerRenderType } from '@/components/tab/TabContainer';
import { TabHeader } from '@/components/tab/TabHeader';
import { Button } from '@/components/ui/button';
@@ -26,7 +26,14 @@ function RatingOrderIndex({ }: Props) {
<>
{[...Array(6)].map((_, i) => (
-
+
{t(`Tabs.Weeknesses.Options.${i}`)}
))}
@@ -74,7 +81,7 @@ function RatingOrderIndex({ }: Props) {
...TabContainerClassNames,
wrapper: 'p-2!',
scrollView: clsx(
- 'border-none! rounded-xl! gap-0! h-full bg-[#EAECF0]! grid! grid-cols-2 px-2! py-2! pt-2!', TabContainerClassNames.scrollView
+ 'border-none! rounded-xl! gap-0! h-full bg-[#EAECF0]! dark:bg-neutral-900! not-dark:gradient-border! grid! grid-cols-2 px-2! py-2! !pb-2 w-full overflow-y-hidden justify-center items-center',
),
title: 'text-sm2! font-normal mt-1',
header: 'rounded-lg h-7! w-full',
@@ -87,7 +94,7 @@ function RatingOrderIndex({ }: Props) {
-
+
@@ -96,7 +103,12 @@ function RatingOrderIndex({ }: Props) {
-