pocko-ui
Version:
React components using pure Bootstrap 5+ which does not contain any external style and script libraries.
36 lines (34 loc) • 675 B
CSS
.noticefication-content {
box-sizing: border-box;
margin: 0 24px 0 0;
padding: 0;
color: rgba(0, 0, 0, 0.8509803922);
position: fixed;
top: 20px;
right: 20px;
}
.noticefication-content .noticefication-content_message {
margin-bottom: 8px;
}
.noticefication-content .noticefication-content_description {
font-size: 14px;
}
.noticefication-content .noticefication-content_close {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
}
@keyframes slide-in {
from {
opacity: 0;
transform: translateX(40px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.animate-slide-in {
animation: slide-in 0.3s ease forwards;
}