Skip to content
Open
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
2 changes: 0 additions & 2 deletions frontend/src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import { graphql } from "gatsby";
import firebase from "gatsby-plugin-firebase";
import { FadeInSection } from "../components/FadeInSection";
import { GatsbyImage, StaticImage } from "gatsby-plugin-image";
import { useWindowSize } from "../utils/hooks/useWindowSize";
import { isBrowser } from "../utils/isBrowser";
import { Header } from "../components/Header";

const AboutPage = ({ data }) => {
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ const IndexPage = ({ data }) => {

<FadeInSection>
<section
className={`relative flex flex-col justify-center mb-24 sm:-mt-20 px-4 ${width < 450 && width >= 300 ? "mt-28" : ""
} ${width < 350 ? "mt-44" : ""}`}
className={"relative flex flex-col justify-center mb-24 px-4 sm:-mt-20 xs:mt-28 mt-44"}
>
<SeekingMembers data={data}/>
</section>
Expand Down
3 changes: 3 additions & 0 deletions frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ module.exports = {
width: {
194: "48rem",
},
screens: {
'xs': '200px',
},
},
},
plugins: [],
Expand Down