17 lines
239 B
SCSS
17 lines
239 B
SCSS
|
.woocommerce-marketing-sync-status {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: $gap-smallest;
|
||
|
|
||
|
&__failed {
|
||
|
color: $alert-red;
|
||
|
fill: $alert-red;
|
||
|
}
|
||
|
|
||
|
&__syncing,
|
||
|
&__synced {
|
||
|
color: $studio-green-50;
|
||
|
fill: $studio-green-50;
|
||
|
}
|
||
|
}
|