diff --git a/src/wp-content/themes/twentynineteen/style-rtl.css b/src/wp-content/themes/twentynineteen/style-rtl.css index 84f857a6087c8..bb7e7b3461791 100644 --- a/src/wp-content/themes/twentynineteen/style-rtl.css +++ b/src/wp-content/themes/twentynineteen/style-rtl.css @@ -6354,14 +6354,14 @@ svg { @media only screen and (min-width: 768px) { .wp-caption.aligncenter { position: relative; - right: calc( calc(8 * (100vw / 12) - 28px) / 2); + right: calc( (8 * 100vw / 12 - 28px) / 2); transform: translateX(50%); } } @media only screen and (min-width: 1168px) { .wp-caption.aligncenter { - right: calc( calc(6 * (100vw / 12) - 28px) / 2); + right: calc( (6 * 100vw / 12 - 28px) / 2); } } diff --git a/src/wp-content/themes/twentynineteen/style.css b/src/wp-content/themes/twentynineteen/style.css index c7122e01606f3..8bc9e46e534c3 100644 --- a/src/wp-content/themes/twentynineteen/style.css +++ b/src/wp-content/themes/twentynineteen/style.css @@ -6365,14 +6365,14 @@ svg { @media only screen and (min-width: 768px) { .wp-caption.aligncenter { position: relative; - left: calc( calc(8 * (100vw / 12) - 28px) / 2); + left: calc( (8 * 100vw / 12 - 28px) / 2); transform: translateX(-50%); } } @media only screen and (min-width: 1168px) { .wp-caption.aligncenter { - left: calc( calc(6 * (100vw / 12) - 28px) / 2); + left: calc( (6 * 100vw / 12 - 28px) / 2); } }