diff --git a/apps/web/src/screens/HomePage/sections/Events/index.tsx b/apps/web/src/screens/HomePage/sections/Events/index.tsx
index 776e3b6b..799788ba 100644
--- a/apps/web/src/screens/HomePage/sections/Events/index.tsx
+++ b/apps/web/src/screens/HomePage/sections/Events/index.tsx
@@ -15,7 +15,7 @@ import { config } from "../../../../config";
import {
Event as IEvent,
GetCurrentEventsQueryHookResult,
- useGetCurrentEventsQuery
+ useGetCurrentEventsQuery,
} from "../../../../generated/graphql";
export const GET_CURRENT_EVENTS_QUERY: any = gql`
@@ -167,16 +167,10 @@ const EventsWrapper: AnyStyledComponent = styled.div`
overflow-y: hidden;
@media all and (max-width: ${MOBILE_BREAKPOINT}) {
- margin-left: 0;
+ margin-left: 0;
}
`;
-const CalendarLink: AnyStyledComponent = styled.a`
- margin: auto;
- color: #ababab;
- font-size: 20px;
-`;
-
const Heading: AnyStyledComponent = styled.h1`
font-family: "Roboto", sans-serif;
text-transform: uppercase;
@@ -198,9 +192,22 @@ const FILTER_TYPES: string[] = [
"General",
"Hack",
"Security",
- "Women"
+ "Women",
];
+const CalendarLink: AnyStyledComponent = styled.a`
+ margin: auto;
+ color: #ababab;
+ font-size: 20px;
+`;
+
+const CalendarText: AnyStyledComponent = styled.div`
+ margin: auto;
+ color: #ababab;
+ font-size: 20px;
+`;
+const CalendarButton: AnyStyledComponent = styled.button``;
+
const DEFAULT_EVENTS_TO_DISPLAY: number = 3;
const CALENDAR_LINK: string =
"https://calendar.google.com/calendar/embed?src=mst.edu_7u3stm8bn7l2umuastep5fmbl0%40group.calendar.google.com&ctz=America%2FChicago";
@@ -297,10 +304,10 @@ const Events: React.FC<{}> = (): JSX.Element => {
Events