Fix alignment of items in footer

This commit is contained in:
0x1eef 2023-10-28 06:08:37 -03:00
parent 996325a13b
commit 3682c4a3bd
3 changed files with 10 additions and 9 deletions

View file

@ -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;

View file

@ -48,10 +48,6 @@
}
}
.justify-end {
justify-content: flex-end !important;
}
.content.theme.en {
ul.body.stream {
li.ayah {

View file

@ -118,12 +118,11 @@ function SurahStream({ node, recitations, locale, paused, t }: Props) {
/>
)}
{readyToRender && endOfStream && <RefreshIcon onClick={() => setStream([])} />}
</footer>
{readyToRender && soundOn && isStalled && (
<div className="row spinner justify-end">
<div className="br"></div>
{readyToRender && soundOn && isStalled && (
<StalledIcon />
</div>
)}
)}
</footer>
</div>
);
}