Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweaks #4

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,9 @@ footer {
background-attachment: fixed;
z-index: 0;
}

body {
display: flex;
flex-direction: column;
align-items: center;
}
1 change: 0 additions & 1 deletion src/app/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
flex-wrap: wrap;
box-sizing: border-box;
color: var(--Dark-Bleu);

margin: 0 var(--side-padding);

@media screen and (max-width: 768px) {
Expand Down
5 changes: 5 additions & 0 deletions src/sections/footer/style.module.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
.container {
max-width: 100rem;
display: flex;
justify-content: space-between;
margin: 7.5rem;

@media screen and (min-width: 1800px) {
margin: 7.5rem auto;
}
}

.left {
Expand Down
2 changes: 1 addition & 1 deletion src/sections/landing/hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Hero = () => {
<div className={styles.cta}>
<div>
<h1>DiamondHacks</h1>
<p>Spring 2024 | UC San Diego</p>
<p>April 6-7, 2024 | UC San Diego</p>
</div>
<div className={styles.buttonsContainer}>
<Link
Expand Down
Loading