feat(core): add rounded corner to mw-message-box

This commit is contained in:
alistair3149 2022-12-08 13:39:00 -05:00
parent 31c7779b82
commit f3ee780f8c
No known key found for this signature in database

View file

@ -10,6 +10,7 @@
.mw-message-box {
overflow: hidden;
padding: var( --space-sm ) var( --space-md );
border-radius: var( --border-radius--small );
background-color: var( --color-surface-2 );
color: var( --color-base--emphasized );
/* Standard property is `overflow-wrap` */
@ -38,3 +39,10 @@
background-color: var( --background-color-success );
}
}
#siteNotice {
.mw-message-box {
// Since it is edge to edge
border-radius: 0;
}
}