File size: 838 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
@import "@automattic/typography/styles/variables";
@import "mixins";
@import "variables";
// More resources
.help-center-more-resources {
@include help-center-link;
.help-center-link__item.help-center-more-resources__resource-item {
.help-center-link__cell.help-center-more-resources__resource-cell {
a,
button {
&.help-center-more-resources__institution {
> svg:first-child {
fill: var(--studio-green);
}
}
&.help-center-more-resources__capture-video {
> svg:first-child {
fill: var(--studio-orange-30);
}
}
&.help-center-more-resources__desktop {
> svg:first-child {
fill: var(--studio-celadon-30);
}
}
&.help-center-more-resources__format-list-numbered {
> svg:first-child {
fill: var(--studio-purple-40);
}
}
}
}
}
}
|