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/frontend/src/components/dayMap/tutorialTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const TutorialTile = ({
<div
className={`day-cell-side border-2 border-white/20 overflow-visible`}
/>
Tutorial
<p className="md:text-lg text-[7px]">Tutorial</p>
<div
className={`day-cell-bottom border-2 border-white/20 overflow-visible`}
/>
Expand Down
10 changes: 5 additions & 5 deletions apps/frontend/src/pages/dayMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ const DayMap = () => {
}, [progress, activeDay]);

return (
<div className="min-h-screen flex flex-col container overflow-x-hidden selection:bg-none mx-auto px-4 md:px-6 gap-12 lg:gap-24 py-14">
<div className="min-h-screen flex flex-col md:overflow-x-hidden overflow-x-scroll container selection:bg-none mx-auto py-12 md:py-14">
<PageExplainer pageTitle="Levels" />

<div className="flex-1 w-full flex justify-center items-start overflow-visible min-h-[80vh]">
<div className="w-full flex justify-center overflow-visible">
<div
ref={mapRef}
className="relative map-area"
className=""
style={{
willChange: "transform",
transformStyle: "preserve-3d",
Expand All @@ -96,7 +96,7 @@ const DayMap = () => {
return (
<div
key={`row-${rowIndex}`}
className={`grid gap-0 items-center justify-center max-w-4xl overflow-visible ${
className={`grid gap-0 items-center max-w-3xl overflow-visible ${
isReversed ? "direction-reverse" : ""
}`}
style={{
Expand All @@ -111,7 +111,7 @@ const DayMap = () => {
<div
key={`cell-${rowIndex}-${cellIndex}`}
style={{ zIndex }}
className={`flex w-full h-full min-h-[90px] lg:min-h-[120px] relative overflow-visible ${
className={`w-full h-full min-h-[60px] lg:min-h-[120px] overflow-visible ${
cell.type === "empty" ? "no-shadow" : ""
}`}
>
Expand Down