aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/theme/GlobalStyle.js
blob: 29426876fc007cf08f6122590f1e42a925c060f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { createGlobalStyle } from 'styled-components'

export default createGlobalStyle`
  body {
      margin: 0;
      padding: 0;
      background: ${(p) => p.theme.colors.background};
      font-family: 'JetBrains Mono', monospace;
      color: ${(p) => p.theme.colors.text};
  }
  
  @media all and (max-width: 1000px) {
    .lt-content-column {
        padding: 0 calc(5vw + 1em) 0 5vw !important;
    }
  }
`