From 93a7c44950b4924236f5b874bcefe5f11a90af69 Mon Sep 17 00:00:00 2001 From: F Date: Thu, 8 Oct 2020 01:15:35 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Style=20`ul`s=20like=20`p`s=20wh?= =?UTF-8?q?en=20they're=20direct=20content=20(#347)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this change, `ul`s get compressed to a single grid column if they're direct children of `.definition-content__content`. Co-authored-by: Tatiana Mac --- assets/css/structures/_definition-content.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/css/structures/_definition-content.scss b/assets/css/structures/_definition-content.scss index 19a12493..09f3c90f 100644 --- a/assets/css/structures/_definition-content.scss +++ b/assets/css/structures/_definition-content.scss @@ -29,7 +29,8 @@ } } - & > p { + & > p, + & > ul { font-family: $sans-serif; font-size: 1.5rem; grid-column: 1 / -1;