diff --git a/src/css/_layout.scss b/src/css/_layout.scss index 3d15e7d53..351f3a947 100644 --- a/src/css/_layout.scss +++ b/src/css/_layout.scss @@ -61,10 +61,16 @@ body .root .content { footer { display: flex; + flex-wrap: wrap; justify-content: space-between; align-items: flex-end; width: 100%; + + .br { + width: 100%; + } } + .row { height: 30px; display: flex; diff --git a/src/css/pages/SurahStream.scss b/src/css/pages/SurahStream.scss index e52597a2a..20c2b1ac9 100644 --- a/src/css/pages/SurahStream.scss +++ b/src/css/pages/SurahStream.scss @@ -48,10 +48,6 @@ } } -.justify-end { - justify-content: flex-end !important; -} - .content.theme.en { ul.body.stream { li.ayah { diff --git a/src/js/pages/SurahStream.tsx b/src/js/pages/SurahStream.tsx index 3e7fd9eb1..c25e61270 100644 --- a/src/js/pages/SurahStream.tsx +++ b/src/js/pages/SurahStream.tsx @@ -118,12 +118,11 @@ function SurahStream({ node, recitations, locale, paused, t }: Props) { /> )} {readyToRender && endOfStream && setStream([])} />} - - {readyToRender && soundOn && isStalled && ( -
+
+ {readyToRender && soundOn && isStalled && ( -
- )} + )} + ); }