File size: 737 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 41 42 43 44 45 46 47 48 |
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
.plugins-browser-list {
padding-top: 40px;
padding-inline: 0;
.feature-example & {
margin: 0;
}
.section-header {
background: none;
box-shadow: none;
padding: 24px 0;
.section-header__label {
font-size: $font-title-small;
line-height: 28px;
font-weight: 500;
color: var(--studio-gray-80);
}
}
.spotlight {
margin-top: 20px;
}
}
.plugins-browser-list__elements {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
padding: 0;
box-shadow: none;
background: none;
gap: 0 18px;
&::after {
display: none;
}
&.card {
// Card margin interferes with section spacing.
margin-bottom: 0;
}
}
|