fix(docs-infra): use consistent padding in marketing pages (#40881)
This commit makes the padding of the "Events", "Features" and "Press kit" pages consistent with that of other marketing pages. Before: ![presskit padding before][1] After: ![presskit padding after][2] [1]: https://user-images.githubusercontent.com/8604205/107986067-f8547800-6fd3-11eb-9164-51793e431d05.png [2]: https://user-images.githubusercontent.com/8604205/107986064-f7234b00-6fd3-11eb-9050-ed7ec04e7443.png PR Close #40881
This commit is contained in:
parent
09d36369b0
commit
c704162800
|
@ -281,23 +281,20 @@ aio-shell {
|
||||||
|
|
||||||
&.page-about,
|
&.page-about,
|
||||||
&.page-contribute,
|
&.page-contribute,
|
||||||
|
&.page-events,
|
||||||
|
&.page-features,
|
||||||
&.page-home,
|
&.page-home,
|
||||||
|
&.page-presskit,
|
||||||
&.page-resources {
|
&.page-resources {
|
||||||
article {
|
article {
|
||||||
padding: 32px;
|
padding: 3rem;
|
||||||
|
|
||||||
@media (max-width: 800px) {
|
@media (max-width: 800px) {
|
||||||
padding: 24px;
|
padding: 2.2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.page-features, &.page-events {
|
|
||||||
article {
|
|
||||||
padding: 0 3rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.page-home, &.page-resources, &.page-events, &.page-features {
|
&.page-home, &.page-resources, &.page-events, &.page-features {
|
||||||
|
|
||||||
.content img {
|
.content img {
|
||||||
|
|
Loading…
Reference in New Issue