1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-10-01 08:50:11 +02:00

Fixed alignment for rtl languages. other alignment fixes

This commit is contained in:
Saud Fatayerji 2023-02-06 14:26:20 +03:00 committed by Anthony Stirling
parent c83c57a37e
commit 9e6771d0f8
2 changed files with 22 additions and 7 deletions

View File

@ -1,14 +1,23 @@
#page-container {
min-height: 100vh;
display: flex;
flex-direction: column;
min-height: 100vh;
display: flex;
flex-direction: column;
}
#content-wrap {
flex: 1;
flex: 1;
}
#footer {
bottom: 0;
width: 100%;
}
bottom: 0;
width: 100%;
}
:is(html[lang=en], html[lang=fr]) * {
direction: ltr;
}
:is(html[lang=ar]) * {
direction: rtl;
text-align: right;
}

View File

@ -117,4 +117,10 @@
}
});
</script>
<style>
.custom-file-label {
padding-right: 90px;
}
</style>
</th:block>