diff --git a/src/components/Layout/style.module.css b/src/components/Layout/style.module.css index 9940700d205..999deb5674e 100644 --- a/src/components/Layout/style.module.css +++ b/src/components/Layout/style.module.css @@ -1,4 +1,4 @@ .body { background-color: rgb(26, 26, 26); - color: rgb(224, 237, 94); + color: rgb(0, 237, 94); } \ No newline at end of file diff --git a/src/components/LocationStat/PeriodStat.tsx b/src/components/LocationStat/PeriodStat.tsx index 2e9760201c2..c5bc0a58ed6 100644 --- a/src/components/LocationStat/PeriodStat.tsx +++ b/src/components/LocationStat/PeriodStat.tsx @@ -15,7 +15,7 @@ const PeriodStat = ({ onClick }: { onClick: (_period: string) => void }) => { key={type} value={`${IS_CHINESE && titleForType(type)} ${times} `} description={type + (times>1 ? "s" : "") } - citySize={1} + citySize={5} onClick={() => onClick(type)} /> ))} diff --git a/src/components/Stat/index.tsx b/src/components/Stat/index.tsx index 9452645721c..b6be4562475 100644 --- a/src/components/Stat/index.tsx +++ b/src/components/Stat/index.tsx @@ -19,7 +19,7 @@ const Stat = ({ {intComma(value.toString())} - {description} + {description} ); diff --git a/src/components/WorkoutStat/index.tsx b/src/components/WorkoutStat/index.tsx index c876f7b1ef7..53d4eba8c6c 100644 --- a/src/components/WorkoutStat/index.tsx +++ b/src/components/WorkoutStat/index.tsx @@ -5,13 +5,13 @@ import { MAIN_COLOR } from '@/utils/const'; const WorkoutStat = ({value, description, pace, className, distance, onClick, color=MAIN_COLOR}: { value: string, description:string, pace: string, className: string, distance: string, onClick: (_year: string) => void , color: string}) => (