You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
324 B
19 lines
324 B
import styled from 'styled-components' |
|
// lib |
|
import palette from 'lib/styles/palette' |
|
|
|
const Wrapper = styled.div` |
|
position: fixed; |
|
left: 0; |
|
bottom: 0; |
|
width: 100%; |
|
height: 37px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
background-color: ${palette.white}; |
|
`; |
|
|
|
export default Wrapper |
|
|
|
|
|
|