Last active
April 16, 2024 03:52
-
-
Save djcowan/68ade9b2d8f88000a9edb5f0892262eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* @link <https://wordpress.org/support/topic/left-and-right-image-alignment-issues-with-fse-themes/> | |
* @author https://wordpress.org/support/users/jharries/ | |
* @todo widewidth... | |
*/ | |
@media only screen and (min-width : 768px) { | |
.is-layout-constrained figure.wp-block-image.alignleft { | |
margin-left: calc( ( 100% - var(--wp--style--global--content-size)) / 2 ); | |
} | |
.is-layout-constrained figure.wp-block-image.alignright { | |
margin-right: calc( ( 100% - var(--wp--style--global--content-size)) / 2 ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment