From 7592a711c75619444ae2370a30832a29b9a53ac2 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 24 May 2024 17:01:57 +0200 Subject: [PATCH] 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. --- assets/css/base.css | 4 ++++ templates/base.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/base.css b/assets/css/base.css index 42ff3c0..c53a3bf 100644 --- a/assets/css/base.css +++ b/assets/css/base.css @@ -148,4 +148,8 @@ h5 { .that-br { display: none; } + + .subtitle { + display: none; + } } \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 09ebe02..00fc8db 100644 --- a/templates/base.html +++ b/templates/base.html @@ -37,7 +37,7 @@ >Private.coffee

Empowering Privacy with Open Source