File size: 932 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 "@automattic/color-studio/dist/color-variables";
@import "@automattic/typography/styles/variables";
.settings {
.setting-item {
margin-bottom: 24px;
&__hint {
color: $studio-gray-50;
font-size: $font-body-extra-small;
text-align: left;
}
&__label,
.components-toggle-control__label {
font-size: $font-body-small;
line-height: $font-title-small;
font-weight: 400;
color: $studio-gray-100;
}
&__label {
margin-bottom: 8px;
text-align: left;
}
.components-toggle-control {
margin: 0;
}
&__app-hint {
margin: 16px 0 8px;
padding: 16px;
background-color: $studio-gray-0;
font-size: $font-body-extra-small;
text-align: left;
display: flex;
.jetpack-logo {
display: inline-block;
vertical-align: middle;
margin-right: 8px;
}
p {
margin: 0;
}
a {
color: $studio-gray-90;
text-decoration: underline;
}
}
}
}
|