mirror of
https://github.com/adoyle0/thaw.git
synced 2025-02-10 11:13:09 -05:00
16 lines
324 B
CSS
16 lines
324 B
CSS
|
.melt-toast {
|
||
|
white-space: pre-wrap;
|
||
|
word-break: break-all;
|
||
|
max-width: 80%;
|
||
|
font-size: 14px;
|
||
|
line-height: 20px;
|
||
|
color: #fff;
|
||
|
background-color: #000000b3;
|
||
|
padding: 8px 12px;
|
||
|
position: fixed;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate3d(-50%, -50%, 0);
|
||
|
border-radius: 8px;
|
||
|
}
|