As proposed in #1273, `margin-botom: 1.5em;` added to all three image alignment classes. tab line 178 inc/woocommerce.php tab line 61 inc/custom-header.php
19 lines
265 B
SCSS
19 lines
265 B
SCSS
.alignleft {
|
|
display: inline;
|
|
float: left;
|
|
margin-right: 1.5em;
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
.alignright {
|
|
display: inline;
|
|
float: right;
|
|
margin-left: 1.5em;
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
.aligncenter {
|
|
clear: both;
|
|
@include center-block;
|
|
margin-bottom: 1.5em;
|
|
}
|