summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/objects/_tabs.scss2
-rw-r--r--src/objects/_tabs.vars.scss1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/objects/_tabs.scss b/src/objects/_tabs.scss
index e6315fd..d130b90 100644
--- a/src/objects/_tabs.scss
+++ b/src/objects/_tabs.scss
@@ -17,7 +17,7 @@
17 flex: 1 1 auto; 17 flex: 1 1 auto;
18 gap: props.get(vars.$spacing); 18 gap: props.get(vars.$spacing);
19 min-inline-size: 0; 19 min-inline-size: 0;
20 block-size: props.get(iro.$core--size--700); 20 block-size: props.get(vars.$block-size);
21 padding-inline: calc(.5 * props.get(vars.$spacing)); 21 padding-inline: calc(.5 * props.get(vars.$spacing));
22 margin-inline: calc(-.5 * props.get(vars.$spacing)); 22 margin-inline: calc(-.5 * props.get(vars.$spacing));
23 overflow-inline: auto; 23 overflow-inline: auto;
diff --git a/src/objects/_tabs.vars.scss b/src/objects/_tabs.vars.scss
index daad166..174fb3b 100644
--- a/src/objects/_tabs.vars.scss
+++ b/src/objects/_tabs.vars.scss
@@ -3,6 +3,7 @@
3@use 'iro-sass/src/props'; 3@use 'iro-sass/src/props';
4@use '../core.vars' as core; 4@use '../core.vars' as core;
5 5
6$block-size: props.def(--o-tabs--rounding, props.get(core.$size--700)) !default;
6$rounding: props.def(--o-tabs--rounding, props.get(core.$rounding)) !default; 7$rounding: props.def(--o-tabs--rounding, props.get(core.$rounding)) !default;
7$spacing: props.def(--o-tabs--spacing, props.get(core.$size--400)) !default; 8$spacing: props.def(--o-tabs--spacing, props.get(core.$size--400)) !default;
8$tab--pad-i: props.def(--o-tabs--tab--pad-i, props.get(core.$size--50)) !default; 9$tab--pad-i: props.def(--o-tabs--tab--pad-i, props.get(core.$size--50)) !default;