14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
|
|
import styled from "styled-components";
|
||
|
|
import { Colors } from "constants/Colors";
|
||
|
|
|
||
|
|
const Container = styled.div`
|
||
|
|
background: ${Colors.WHITE};
|
||
|
|
width: 280px;
|
||
|
|
position: fixed;
|
||
|
|
right: 30px;
|
||
|
|
bottom: 0;
|
||
|
|
z-index: 11;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default Container;
|