2021-03-05 13:37:53 +00:00
|
|
|
import styled from 'styled-components'
|
2021-03-10 13:51:24 +00:00
|
|
|
import { colours, ui } from '../../assets/theme'
|
2021-03-05 13:37:53 +00:00
|
|
|
|
|
|
|
export const ChatWrapper = styled.div`
|
|
|
|
position: fixed;
|
|
|
|
z-index: 10;
|
|
|
|
bottom: 0;
|
|
|
|
right: 32px;
|
2021-03-10 13:51:24 +00:00
|
|
|
border-radius: ${ui.borderRadius}px;
|
2021-03-05 13:37:53 +00:00
|
|
|
`
|