Skip to content

Commit

Permalink
Added title to projects section
Browse files Browse the repository at this point in the history
  • Loading branch information
logan.young committed Jul 25, 2024
1 parent bb5b6ee commit 08b41cb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/pages/Projects/Projects.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,17 @@
color: #{$magenta};
margin-right: 10px;
}

.projectsTitle {
width: 100%;
text-align: center;
margin-bottom: 40px;
font-size: 2.5em;
text-decoration: underline 2px #{$magenta};
color: #{$base1};

@media (max-width: 640px) {
font-size: 1.8em;
text-align: center;
}
}
1 change: 1 addition & 0 deletions src/pages/Projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import styles from './Projects.module.scss';
const Projects = () => {
return (
<div className={styles.projectsContainer}>
<h1 className={styles.projectsTitle}>Personal Projects</h1>
{projects.map((project, idx) => {
return (
<a
Expand Down

0 comments on commit 08b41cb

Please sign in to comment.