Added styled-components + various
Includes changes due to NextJS version bump and attempts at storing theme via cookie
This commit is contained in:
parent
8a763ee72e
commit
21e613891e
13 changed files with 325 additions and 102 deletions
components/styles
8
components/styles/generic.tsx
Normal file
8
components/styles/generic.tsx
Normal file
|
@ -0,0 +1,8 @@
|
|||
import styled from 'styled-components'
|
||||
|
||||
const Page = styled.div`
|
||||
width: 100%;
|
||||
background-color: ${({ theme }) => theme.colors.background};
|
||||
`
|
||||
|
||||
export { Page }
|
Loading…
Add table
Add a link
Reference in a new issue