woocommerce/plugins/woocommerce-admin/client/marketing/overview-multichannel/Channels/RegisteredChannelCardBody.scss

48 lines
715 B
SCSS
Raw Normal View History

.woocommerce-marketing-installed-channel-card-body {
2022-12-13 14:47:16 +00:00
.woocommerce-marketing-installed-channel-description {
display: flex;
gap: $gap-smaller;
&__separator::before {
content: '';
}
}
2022-12-13 13:36:09 +00:00
.woocommerce-marketing-sync-status {
display: flex;
align-items: center;
gap: $gap-smallest;
&__failed {
color: $alert-red;
fill: $alert-red;
}
&__syncing {
color: #008a20;
fill: #008a20;
}
&__synced {
color: #008a20;
fill: #008a20;
}
}
2022-12-13 14:47:16 +00:00
.woocommerce-marketing-issue-status {
display: flex;
align-items: center;
gap: $gap-smallest;
&__error {
color: $alert-red;
fill: $alert-red;
}
&__warning {
color: $alert-yellow;
fill: $alert-yellow;
}
}
}