Skip to content

Commit

Permalink
fix: fix index text to typography
Browse files Browse the repository at this point in the history
  • Loading branch information
malloc3141 committed Nov 25, 2024
1 parent 3e09331 commit 266c2a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web/src/common/components/Banner/Banner.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { useState, useEffect } from "react";
import styled from "styled-components";
import Image from "next/image";
import Typography from "@sparcs-students/web/common/components/Typography";

type BannerProps = {
images?: string[];
Expand Down Expand Up @@ -39,7 +40,7 @@ const Arrow = styled.button`
z-index: 1;
`;

const IndexWrapper = styled.div`
const IndexWrapper = styled(Typography)`
display: flex;
margin-top: 8px;
justify-content: center;
Expand Down

0 comments on commit 266c2a7

Please sign in to comment.