File size: 1,105 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 49 50 51 52 53 54 55 56 |
@import "@wordpress/base-styles/breakpoints";
.plugin-details-sidebar__plugin-details-title {
padding: 15px 0;
display: none;
color: var(--studio-gray-100);
font-size: $font-body-small;
@media screen and (max-width: 1040px) {
display: block;
}
}
.plugin-details-sidebar__plugin-details-content {
margin-top: 30px; /* Extra 6px because of line-height and border */
border-style: solid none;
border-width: 1px;
border-color: #eee;
border-bottom: none;
border-top: 1px solid var(--studio-gray-5);
@media (min-width: $break-small) {
padding-top: 24px;
}
.title {
color: var(--studio-gray-60);
font-size: $font-body-extra-small;
}
.value {
color: var(--studio-gray-90);
font-size: $font-body-small;
&.plugin-details-sidebar__active-installs-value {
font-size: $font-body;
}
}
.card {
background: transparent;
}
@media screen and (max-width: 1040px) {
display: flex;
justify-content: space-between;
flex-wrap: wrap; // Needed for paid plugin USPs.
}
@media (max-width: $break-small) {
.plugin-details-sidebar__tested {
margin-top: 12px;
}
}
}
|