Files
talk/client/coral-ui/components/SnackBar.css
T
2017-01-30 08:19:18 -03:00

20 lines
399 B
CSS

.SnackBar {
top: 0;
background: red;
position: fixed;
cursor: default;
background-color: #323232;
z-index: 3;
display: flex;
will-change: transform;
transition: transform .25s cubic-bezier(.4,0,1,1);
pointer-events: none;
transform: translate(-50%,80px);
padding: 18px 14px;
vertical-align: middle;
color: #fff;
border-radius: 3px;
text-align: center;
left: 50%;
}