Skip to content

Commit

Permalink
Fixed heights of maps, reordered imports in day components
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWearsHat committed Nov 1, 2024
1 parent de6b08a commit 04bf0fd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
1 change: 0 additions & 1 deletion apps/site/src/app/schedule/DayOne/DayOne.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

.map1 {
position: absolute;
height: auto;
width: 80%;
min-width: 1000px;
@include bootstrap.media-breakpoint-down(md) {
Expand Down
4 changes: 2 additions & 2 deletions apps/site/src/app/schedule/DayOne/DayOne.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import Image from "next/image";

import EventCircle from "../Assets/Circle";

import styles from "./DayOne.module.scss";

import Map1 from "@/assets/images/map1/map_1.svg";
import MobileMap from "@/assets/images/map1/mobile_map.svg";
import MobilePath from "@/assets/images/map1/mobile_path.png";
import Path from "@/assets/images/map1/map_1_path.png";

import styles from "./DayOne.module.scss";

interface DayOneProps {
schedule: Array<any>;
time: number;
Expand Down
2 changes: 0 additions & 2 deletions apps/site/src/app/schedule/DayThree/DayThree.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@
display: flex;
justify-content: center;
align-items: center;
height: auto;
height: 1300px;
}

.map3 {
position: absolute;
width: 120%;
min-width: 1400px;
height: auto;
}

.title {
Expand Down
6 changes: 3 additions & 3 deletions apps/site/src/app/schedule/DayThree/DayThree.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
"use client";

import React, { useEffect } from "react";
import React from "react";
import Image from "next/image";

import EventCircle from "../Assets/Circle";
import useWindowWidth from "@/lib/useWindowWidth";

import styles from "./DayThree.module.scss";

import Map3 from "@/assets/images/map3/map_3.svg";
import Path from "@/assets/images/map3/map_3_path.png";
import MobilePath from "@/assets/images/map3/map_3_path_mobile.png";

import styles from "./DayThree.module.scss";

interface DayThreeProps {
schedule: Array<any>;
time: number;
Expand Down
1 change: 0 additions & 1 deletion apps/site/src/app/schedule/DayTwo/DayTwo.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
position: absolute;
width: 90%;
min-width: 1400px;
height: auto;
}

.title {
Expand Down
4 changes: 2 additions & 2 deletions apps/site/src/app/schedule/DayTwo/DayTwo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import Image from "next/image";
import EventCircle from "../Assets/Circle";
import useWindowWidth from "@/lib/useWindowWidth";

import styles from "./DayTwo.module.scss";

import Map2 from "@/assets/images/map2/map_2.svg";
import Path from "@/assets/images/map2/map_2_path.png";
import MobilePath from "@/assets/images/map2/map_2_path_mobile.png";

import styles from "./DayTwo.module.scss";

interface DayTwoProps {
schedule: Array<any>;
time: number;
Expand Down

0 comments on commit 04bf0fd

Please sign in to comment.