From 7def827053204402ce516775adf89fc2486634b5 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 27 Nov 2023 17:38:10 +0000 Subject: [PATCH] SASS: Fix deprecated syntax in listing.css Signed-off-by: Michael Tremer --- src/sass/listing.sass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sass/listing.sass b/src/sass/listing.sass index 66ec73f3..67ec60ba 100644 --- a/src/sass/listing.sass +++ b/src/sass/listing.sass @@ -8,11 +8,11 @@ body padding: 3rem 1rem; h1 - @extend .title.is-3 + @extend .title, .is-3 // Make all tables .table by default table - @extend .table.is-fullwidth.is-bordered.is-striped.is-hoverable + @extend .table, .is-fullwidth, .is-bordered, .is-striped, .is-hoverable // Fix to show the bottom line of the table table -- 2.47.2