From cc5329a5f4d3ea91cac93bc7f9b8f943b7ced226 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Wed, 22 Jul 2026 12:27:09 +0200 Subject: Paths --- src/scopes/_tables.scss | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'src/scopes/_tables.scss') diff --git a/src/scopes/_tables.scss b/src/scopes/_tables.scss index cb3a10c..7442874 100644 --- a/src/scopes/_tables.scss +++ b/src/scopes/_tables.scss @@ -1,40 +1,40 @@ -@use 'sass:meta'; -@use 'pkg:iro-sass/src/bem'; -@use 'pkg:iro-sass/src/props'; -@use '../props' as *; -@use '../objects/table.vars' as table; +@use "sass:meta"; +@use "pkg:iro-sass/bem"; +@use "pkg:iro-sass/props"; +@use "../props" as *; +@use "../objects/table.vars" as table; -@forward 'tables.vars'; -@use 'tables.vars' as vars; +@forward "tables.vars"; +@use "tables.vars" as vars; @mixin styles { - @include materialize-at-root(meta.module-variables('vars')); + @include materialize-at-root(meta.module-variables("vars")); - @include bem.scope('tables') { + @include bem.scope("tables") { table { margin-block-start: props.get(vars.$margin-bs); - border-spacing: 0; - border-collapse: separate; + border-spacing: 0; + border-collapse: separate; } th { - padding-block: props.get(table.$pad-b); + padding-block: props.get(table.$pad-b); padding-inline: props.get(table.$pad-i); - font-family: props.get(table.$heading--font-family); - font-size: props.get(table.$heading--font-size); - font-weight: props.get(table.$heading--font-weight); - color: props.get(table.$heading-color); - text-align: start; + font-family: props.get(table.$heading--font-family); + font-size: props.get(table.$heading--font-size); + font-weight: props.get(table.$heading--font-weight); + color: props.get(table.$heading-color); + text-align: start; text-transform: props.get(table.$heading--text-transform); letter-spacing: props.get(table.$heading--letter-spacing); } td { - padding-block: props.get(table.$pad-b); - padding-inline: props.get(table.$pad-i); - border-color: props.get(table.$border-color); - border-style: solid; - border-width: 0; + padding-block: props.get(table.$pad-b); + padding-inline: props.get(table.$pad-i); + border-color: props.get(table.$border-color); + border-style: solid; + border-width: 0; border-block-start-width: props.get(table.$border-width); } @@ -46,7 +46,7 @@ } } - @include bem.modifier('flush') { + @include bem.modifier("flush") { th, td { &:first-child { @@ -59,7 +59,7 @@ } } - @include bem.modifier('box') { + @include bem.modifier("box") { td { background-color: props.get(table.$box--bg-color); -- cgit v1.3.1