Skip to content

Commit

Permalink
rebase: main
Browse files Browse the repository at this point in the history
  • Loading branch information
samderanova committed Sep 18, 2023
1 parent e0ca990 commit 7f46b1b
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
2 changes: 2 additions & 0 deletions apps/site/src/lib/styles/_bootstrap-utils.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "./zothacks-theme";

@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/variables-dark";
Expand Down
7 changes: 5 additions & 2 deletions apps/site/src/lib/styles/_zothacks-theme.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
// Common variables for site theme consistency
@use "./bootstrap.scss";


// colors
$white: #fafaff; // Paper Background color
Expand All @@ -17,3 +15,8 @@ $light-blue: #81deeb;
$blue: #3902fd;
$purple: #6600b6;
$navbar-red: #ff0000;

// bootstrap overrides
$font-family-base: var(--next-font-fuzzy-bubbles);
$font-size-base: 1.25rem;
$headings-font-weight: 700;
8 changes: 4 additions & 4 deletions apps/site/src/views/Home/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use client";

import Landing from "./sections/Landing/Landing";
import About from "./sections/About/About";
import Mentors from "./sections/Mentors/Mentors";
import Intro from "./sections/Intro/Intro";
import Mentor from "./sections/Mentor/Mentor";
import Sponsors from "./sections/Sponsors/Sponsors";
import FAQ from "./sections/FAQ/FAQ";

Expand All @@ -12,8 +12,8 @@ function Home() {
return (
<div className={styles.home}>
<Landing />
<About />
<Mentors />
<Intro />
<Mentor />
<Sponsors />
<FAQ />
</div>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Mentor() {
const width = useWindowWidth();

const mentorHeader = (
<h2 className="mb-3">Interested in becoming a mentor?</h2>
<h2 className="mb-3 text-start">Interested in becoming a mentor?</h2>
);
const mentorDescEl = (
<p>
Expand Down

0 comments on commit 7f46b1b

Please sign in to comment.