mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-10 05:55:23 -05:00
* Metamaps base prototype Fixed project scaffolding * Resolved all lint related issues Resolved all issues related to lint compliance
20 lines
398 B
TypeScript
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;
|
|
}
|
|
`; |