Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 440 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 440 Bytes

STYLES

In this directory, you can store custom styles that is used in your project.

Example (styles/global.js)

import css from 'styled-jsx/css'

export default css.global`
  html,
  body {
    min-height: 100vh;
    scroll-behavior: smooth;
    padding: 0 !important;
    overflow-x: hidden !important;
  }
`;