mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-23 19:33:44 +03:00

Simplifies pullquote and fixes the issues with editor styles; move color classes utilities.
29 lines
403 B
SCSS
29 lines
403 B
SCSS
body.page-about .entry-content {
|
|
|
|
@include breakpoint( $breakpoint-tablet ) {
|
|
> p,
|
|
> h1,
|
|
> h2,
|
|
> h3,
|
|
> h4,
|
|
> h5,
|
|
> h6,
|
|
> .wp-block-quote,
|
|
> .wp-block-media-text,
|
|
> .wp-block-button {
|
|
margin-left: 40%;
|
|
}
|
|
|
|
p.is-style-wporg-tldr {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.wp-block-pullquote.is-style-solid-color {
|
|
position: absolute;
|
|
top: 800px;
|
|
left: 0;
|
|
width: 40%;
|
|
}
|
|
}
|
|
}
|