Twenty Twenty: list error notices vertically. Fix #27385

This commit is contained in:
Albert Juhé Lluveras 2020-08-18 19:19:17 +02:00
parent b3097dbae6
commit 3ee608aee8
1 changed files with 10 additions and 1 deletions

View File

@ -188,12 +188,17 @@ a.button {
.woocommerce-info {
margin-bottom: 5rem;
margin-left: 0;
padding: 1.5rem 3rem;
background: #eee;
font-size: 0.88889em;
font-family: $headings;
list-style: none;
overflow: hidden;
}
.woocommerce-message,
.woocommerce-error li,
.woocommerce-info {
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
@ -219,6 +224,10 @@ a.button {
background: #111;
}
}
> li {
margin: 0;
}
}
#site-content {