From 4aa02145c0568edc4b95c28e24dfaca2afba701a Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 10 Aug 2022 10:42:24 -0700 Subject: [PATCH] Fix centering of text in the slides --- openlp/core/display/html/display.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/openlp/core/display/html/display.css b/openlp/core/display/html/display.css index 053ddc30e..d4cd2065c 100644 --- a/openlp/core/display/html/display.css +++ b/openlp/core/display/html/display.css @@ -57,7 +57,7 @@ body { body.disable-transitions *, body.disable-transitions.transition, -body.disable-transitions.transition .reveal .slides, +body.disable-transitions.transition .reveal .slides, body.disable-transitions.transition .reveal .footer { transition: none !important; } @@ -109,6 +109,10 @@ body.transition .reveal .slide-background { margin: 0; } +section.text-slides.stack.present { + text-align-last: unset !important; +} + #global-background { background-size: cover; background-position: 50% 50%; @@ -422,4 +426,4 @@ body.transition .reveal .slide-background { transition-duration: 800ms !important; } .reveal[class*=fade].overview .slides section { - transition: none; } \ No newline at end of file + transition: none; }