33 lines
550 B
SCSS
33 lines
550 B
SCSS
|
.woocommerce-task-shipping-recommendation__plugins-install {
|
||
|
display: flex;
|
||
|
padding: $gap-large $gap;
|
||
|
border: 1px solid #ddd;
|
||
|
border-radius: 3px;
|
||
|
justify-content: space-around;
|
||
|
margin-bottom: $gap-large;
|
||
|
|
||
|
.plugins-install__wcs-image {
|
||
|
display: flex;
|
||
|
|
||
|
img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.plugins-install__list {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: space-around;
|
||
|
gap: $gap;
|
||
|
}
|
||
|
|
||
|
.plugins-install__list-item {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.plugins-install__list-icon {
|
||
|
margin-right: $gap-small;
|
||
|
}
|
||
|
}
|