From c3fd520578073c012af21620b3dd6df9e194b681 Mon Sep 17 00:00:00 2001 From: sthag Date: Mon, 28 Jul 2025 22:30:16 +0200 Subject: [PATCH] fix: Double assignment --- elements/_sections.scss | 1 - modules/print/_print_module.scss | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/elements/_sections.scss b/elements/_sections.scss index f8d7506..9963f22 100644 --- a/elements/_sections.scss +++ b/elements/_sections.scss @@ -29,7 +29,6 @@ body { margin: 0; font-family: $family_text_basic; font-size: $size_text_basic; - line-height: $line_basic; line-height: $line_text_basic; color: $color_text_basic; background-color: $color_back_basic; diff --git a/modules/print/_print_module.scss b/modules/print/_print_module.scss index 1e01a84..053e92f 100644 --- a/modules/print/_print_module.scss +++ b/modules/print/_print_module.scss @@ -32,10 +32,7 @@ $din: $a4, $a5, $a6; @each $space in $din { #{nth($space, 1)} { - padding-top: nth($space, 2); - padding-right: nth($space, 3); - padding-bottom: nth($space, 4); - padding-left: nth($space, 5); + padding-top: nth($space, 2) nth($space, 3) nth($space, 4) nth($space, 5); .page_head, .page_foot { right: nth($space, 3);