feat: hide subtitle in base layout
Hid subtitle across the application by adding a CSS rule to not display elements with the `.subtitle` class. This change aligns the UI more closely with the minimalist design ethos the project aims to embody, reducing visual clutter and focusing user attention on the primary content. Affected areas primarily include page headers and footers where the subtitle was previously displayed.
This commit is contained in:
parent
4f6e170a79
commit
7592a711c7
2 changed files with 5 additions and 1 deletions
|
@ -148,4 +148,8 @@ h5 {
|
|||
.that-br {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
display: none;
|
||||
}
|
||||
}
|
|
@ -37,7 +37,7 @@
|
|||
><span style="color: rgb(35, 35, 35)"
|
||||
>Private.coffee</span
|
||||
></span
|
||||
><br class="that-br" /><span class="ps-2"
|
||||
><br class="that-br" /><span class="ps-2 subtitle"
|
||||
>Empowering Privacy with Open Source</span
|
||||
>
|
||||
</p>
|
||||
|
|
Loading…
Reference in a new issue