Skip to content

Commit

Permalink
improve spacing in talks on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunnerLivio committed Mar 14, 2021
1 parent 952d568 commit 01ef7f0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pages/talks.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@ import styled from "styled-components"
import SEO from "../components/seo"
import Content from "../components/content"
import Talk from "../components/talk"
import breakpoint from "styled-components-breakpoint"

const TalkList = styled.main`
display: flex;
align-items: center;
flex-direction: column;
width: 100%;
margin: 48px 0;
${breakpoint("sm")`
margin: 32px 0;
`}
`

const Talks = ({ data }) => {
Expand Down

0 comments on commit 01ef7f0

Please sign in to comment.