react-s-alert
react-s-alert copied to clipboard
message can be displayed on center?
message can be displayed on center?
Unfortunately not yet, I plan to implement it. For now you can manipulate css to achieve it.
bottom-center is popular and needed
The issue has created a long time, but the present is not yet 😢
+1
just do
.s-alert-box-inner {
text-align: center;
}
I used center align only warning messages, and added this css
.s-alert-warning {
right: 50vw;
left: 50vw;
transform: translateX(-50%);
}
Apply:
Alert.warning( <div> text </div>,
{ position: 'bottom-right' , offset: 30 }
);