From 1fc5a1f2651d7a0225c213f33b9ef303a47227fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n?= <41774881+xentenza@users.noreply.github.com> Date: Fri, 6 Feb 2026 16:15:47 +0100 Subject: [PATCH] Schools' title size - Adjusting the size of EPFL Caption Cards titles for screen widths smaller than 1200px https://epfl-webvolution.atlassian.net/browse/WEBEVOL-270 --- assets/components/content-types/school/school.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/components/content-types/school/school.scss b/assets/components/content-types/school/school.scss index 7c81b0e79..9bde581a4 100644 --- a/assets/components/content-types/school/school.scss +++ b/assets/components/content-types/school/school.scss @@ -1 +1,9 @@ @charset 'utf-8'; + +.card { + .h4 { + @include media-breakpoint-down(xl) { + font-size: 1.152rem; + } + } +}