...
 
Commits (2)
......@@ -69,7 +69,7 @@
font-weight: 400;
padding: 16px 0;
@media screen and (max-width: $max-mobile) {
padding: 8px 0;
padding: 4px 0;
}
}
......@@ -173,9 +173,12 @@
.m-boost--creator-selector--selected-label,
.m-boost--creator-selector--description {
display: block;
font-size: 13px;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-size: 13px;
@media screen and (max-width: $min-tablet){
font-size: 10px;
}
}
.m-boost--creator-selector--cta,
......
......@@ -117,11 +117,17 @@
}
.m-wire--creator-section {
padding: 16px 0;
font-weight: 400;
padding: 16px 0;
@media screen and (max-width: $min-tablet) {
padding: unset;
}
&.m-wire--creator-section--last {
margin-top: 8px;
@media screen and (max-width: $min-tablet) {
margin-top: 0px;
}
}
}
......