10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
|
import styled from 'styled-components'
|
||
|
import { colours } from '../../assets/theme'
|
||
|
|
||
|
export const ChatWrapper = styled.div`
|
||
|
position: fixed;
|
||
|
z-index: 10;
|
||
|
bottom: 0;
|
||
|
right: 32px;
|
||
|
`
|