Files
TheGame/packages/metamaps/styles/ThreeBox.tsx
The Lone Rōnin 9a9deaf727 Metamaps base prototype (#50)
* Metamaps base prototype

Fixed project scaffolding

* Resolved all lint related issues

Resolved all issues related to lint compliance
2020-08-06 15:04:47 -06:00

20 lines
398 B
TypeScript

import styled from 'styled-components';
import { PopupColor } from './Styles';
export const ThreeBoxContainer = styled.div`
position: fixed;
left: 15px;
bottom: 15px;
z-index: 1111;
padding: 10px 15px;
background: ${PopupColor};
z-index: 11;
border-radius: 8px;
input {
margin: 0 15px 0 0;
padding: 0 10px;
border-radius: 5px;
}
`;