From 5216739cf9b084f7388d687b84044f522d267cbf Mon Sep 17 00:00:00 2001 From: Volpeon Date: Wed, 22 Jul 2026 07:55:43 +0200 Subject: Use iro-sass via pkg: --- src/scopes/_tables.scss | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/scopes/_tables.scss') diff --git a/src/scopes/_tables.scss b/src/scopes/_tables.scss index 5b64301..cb3a10c 100644 --- a/src/scopes/_tables.scss +++ b/src/scopes/_tables.scss @@ -1,6 +1,6 @@ @use 'sass:meta'; -@use 'iro-sass/src/bem'; -@use 'iro-sass/src/props'; +@use 'pkg:iro-sass/src/bem'; +@use 'pkg:iro-sass/src/props'; @use '../props' as *; @use '../objects/table.vars' as table; @@ -62,35 +62,35 @@ @include bem.modifier('box') { td { background-color: props.get(table.$box--bg-color); - + &:first-child { border-inline-start-width: props.get(table.$border-width); } - + &:last-child { border-inline-end-width: props.get(table.$border-width); } } - + tr { &:first-child { td { &:first-child { border-start-start-radius: props.get(table.$rounding); } - + &:last-child { border-start-end-radius: props.get(table.$rounding); } } } - + &:last-child { td { &:first-child { border-end-start-radius: props.get(table.$rounding); } - + &:last-child { border-end-end-radius: props.get(table.$rounding); } -- cgit v1.3.1