From b4f86ff2dba337edd41ec4d1fa138519609ed062 Mon Sep 17 00:00:00 2001 From: "Luna D." Date: Thu, 19 Dec 2024 19:47:45 +0100 Subject: [PATCH] respect even odd type coolo --- assets/css/common/mixins.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/common/mixins.css b/assets/css/common/mixins.css index 5fa70103..45cf63d7 100644 --- a/assets/css/common/mixins.css +++ b/assets/css/common/mixins.css @@ -15,7 +15,7 @@ @define-mixin even-odd-type $classname, $type { .$(classname):nth-child(odd).$(type), .$(classname):nth-child(odd) .$(type) { - background: var(--$(type)-even-color); + background: var(--$(type)-odd-color); } .$(classname):nth-child(even).$(type), @@ -25,7 +25,7 @@ .$(classname):nth-child(even) .$(classname):nth-child(odd).$(type), .$(classname):nth-child(even) .$(classname):nth-child(odd) .$(type) { - background: var(--$(type)-even-color); + background: var(--$(type)-odd-color); } }