You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
345 B
17 lines
345 B
import styled from 'styled-components/macro'
|
|
|
|
export const WrapperError = styled.div`
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
width: 390px;
|
|
max-height: 500px;
|
|
border-radius: 10px;
|
|
background-color: #333333;
|
|
color: white;
|
|
padding: 20px;
|
|
font-size: 0.8rem;
|
|
text-align: center;
|
|
z-index: 1000000;
|
|
white-space: pre-wrap;
|
|
`
|
|
|