saving adiditional vertical space on homescreen

This commit is contained in:
Reece 2025-07-01 19:09:20 +01:00
parent dd18e0726e
commit fb2af30b92
2 changed files with 6 additions and 5 deletions

View File

@ -3,7 +3,7 @@
background-color: var(--md-sys-color-surface-container-low); background-color: var(--md-sys-color-surface-container-low);
width: 100%; width: 100%;
font-size: 16px; font-size: 16px;
margin-bottom: 2rem; margin-bottom: 0.5rem;
padding: 0.75rem 3.5rem; padding: 0.75rem 3.5rem;
border: 1px solid var(--md-sys-color-outline-variant); border: 1px solid var(--md-sys-color-outline-variant);
border-radius: 3rem; border-radius: 3rem;

View File

@ -27,9 +27,9 @@
<div <div
style="display:flex; flex-direction: column; justify-content: center; width:100%; margin-bottom:1rem"> style="display:flex; flex-direction: column; justify-content: center; width:100%; margin-bottom:1rem">
<div style="width:fit-content; margin: 0 auto; padding: 0 3rem"> <div style="width:fit-content; margin: 0 auto; padding: 0 3rem">
<p class="lead fs-4" <div class="lead fs-4"
th:text="${@homeText != 'null' and @homeText != null and @homeText != ''} ? ${@homeText} : #{home.desc}"> th:text="${@homeText != 'null' and @homeText != null and @homeText != ''} ? ${@homeText} : #{home.desc}">
</p> </div>
</div> </div>
<div id="groupRecent" style="width: fit-content; margin: 0 auto"> <div id="groupRecent" style="width: fit-content; margin: 0 auto">
<div <div
@ -117,9 +117,10 @@
</div> </div>
</div> </div>
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
</div> </div>
<th:block th:insert="~{fragments/footer.html :: footer}"></th:block>
</div> </div>
</div> </div>