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.
25 lines
413 B
25 lines
413 B
import styled from 'styled-components/macro'
|
|
|
|
export const Wrapper = styled.div`
|
|
width: 100%;
|
|
margin: auto;
|
|
overflow: hidden;
|
|
`
|
|
|
|
export const List = styled.ul`
|
|
display: flex;
|
|
gap: 20px;
|
|
width: 100%;
|
|
height: 100%;
|
|
`
|
|
|
|
export const ListItem = styled.li`
|
|
flex-shrink: 0;
|
|
height: 100%;
|
|
`
|
|
|
|
export const ButtonsWrapper = styled.div`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
`
|
|
|