are-message
Version:
This is a React global notification message component. It is a standalone implementation of the are-visual message component.
29 lines (28 loc) • 546 B
CSS
.are-message {
position: fixed;
top: 20px;
right: 0;
left: 0;
width: 100%;
text-align: center;
pointer-events: none;
}
.are-message-item-wrap {
position: relative;
padding: 8px;
text-align: center;
}
.are-message-item {
position: relative;
display: inline-block;
box-sizing: border-box;
padding: 8px 24px;
border: 1px solid #eaeaea;
background-color: #fff;
color: #1f1f1f;
font-size: 14px;
line-height: 1.5715;
pointer-events: all;
border-radius: 999px;
box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
}