Skip to content

Commit

Permalink
font bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rishinhk004 committed Oct 6, 2024
1 parent ebe84d2 commit 359fda3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const Navbar = () => {
navigate("/");
}}
>
<p>Hom;</p>
<p>Home</p>
<img alt="glow" src="/images/underscore.svg" className="underscore" />
</button>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/Pages/Team/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Teams = () => {
<div className={styles.page}>
<div className={styles.teamname}>
<div className={styles.headingteamsa} id="CORE">
CORE TEAM
core team
</div>{" "}
<div className={styles.teamname_body}>
<section className={styles.sec}> {Convener.map(MemberDetails)}</section>
Expand All @@ -38,7 +38,7 @@ const Teams = () => {

<div className={styles.teamname}>
<div className={styles.headingteamsa} id="TECH">
TECH TEAM
tech team
</div>{" "}
<div className={styles.teamname_body}>
<section className={styles.sec}> {Techlead.map(MemberDetails)}</section>
Expand Down
5 changes: 3 additions & 2 deletions src/Pages/Team/Team.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ $fontcolor: #ffffff;

@font-face {
font-family: "StarJedi";
src: url("../../../public/fonts/Starjedi.ttf");
src: url("/public/fonts/Starjedi.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
.root {
font-size: 16px;
Expand Down Expand Up @@ -58,7 +60,6 @@ $fontcolor: #ffffff;
line-height: 2.5rem;
width: 100%;
position: relative;
text-transform: capitalize;
top: 7rem;
text-align: center;
}
Expand Down

0 comments on commit 359fda3

Please sign in to comment.