summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2025-07-27 17:05:26 +0200
committerVolpeon <git@volpeon.ink>2025-07-27 17:05:26 +0200
commita48102f84692af4484ae9ba3da65de68fd1c2e9c (patch)
treeb54d3ee3a2ee475f6855cb56c3025012a1b0a4bd
parentAdd highlighted state to button (diff)
downloadiro-design-a48102f84692af4484ae9ba3da65de68fd1c2e9c.tar.gz
iro-design-a48102f84692af4484ae9ba3da65de68fd1c2e9c.tar.bz2
iro-design-a48102f84692af4484ae9ba3da65de68fd1c2e9c.zip
-rw-r--r--src/_core.vars.scss2
-rw-r--r--src/scopes/_links.scss2
-rw-r--r--src/scopes/_links.vars.scss3
3 files changed, 4 insertions, 3 deletions
diff --git a/src/_core.vars.scss b/src/_core.vars.scss
index 19ebce2..8c0b74f 100644
--- a/src/_core.vars.scss
+++ b/src/_core.vars.scss
@@ -99,7 +99,7 @@ $shadow--l2--y: props.def(--shadow--l2--y, 5px) !default;
99$shadow--l2--blur: props.def(--shadow--l2--blur, 12px) !default; 99$shadow--l2--blur: props.def(--shadow--l2--blur, 12px) !default;
100$shadow--l2--grow: props.def(--shadow--l2--grow, -4px) !default; 100$shadow--l2--grow: props.def(--shadow--l2--grow, -4px) !default;
101 101
102$rounding: props.def(--rounding, 8px) !default; 102$rounding: props.def(--rounding, 12px) !default;
103$rounding--sm: props.def(--rounding--sm, 4px) !default; 103$rounding--sm: props.def(--rounding--sm, 4px) !default;
104 104
105$key-focus--outline-width: props.def(--key-focus--outline-width, props.get($border-width--thick)) !default; 105$key-focus--outline-width: props.def(--key-focus--outline-width, props.get($border-width--thick)) !default;
diff --git a/src/scopes/_links.scss b/src/scopes/_links.scss
index 4092633..4ff242c 100644
--- a/src/scopes/_links.scss
+++ b/src/scopes/_links.scss
@@ -18,7 +18,7 @@
18 text-decoration: underline; 18 text-decoration: underline;
19 text-decoration-thickness: props.get(vars.$underline-width); 19 text-decoration-thickness: props.get(vars.$underline-width);
20 text-decoration-color: props.get(vars.$underline-color); 20 text-decoration-color: props.get(vars.$underline-color);
21 border-radius: props.get(vars.$rounding); 21 border-radius: props.get(vars.$rounding-sm);
22 box-decoration-break: clone; 22 box-decoration-break: clone;
23 23
24 &:hover { 24 &:hover {
diff --git a/src/scopes/_links.vars.scss b/src/scopes/_links.vars.scss
index b976100..ac7815a 100644
--- a/src/scopes/_links.vars.scss
+++ b/src/scopes/_links.vars.scss
@@ -3,7 +3,8 @@
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$rounding: props.def(--s-links--rounding, props.get(core.$rounding--sm)) !default; 6$rounding: props.def(--s-links--rounding, props.get(core.$rounding)) !default;
7$rounding-sm: props.def(--s-links--rounding-sm, props.get(core.$rounding--sm)) !default;
7$underline-width: props.def(--s-links--underline-width, props.get(core.$border-width--thin)) !default; 8$underline-width: props.def(--s-links--underline-width, props.get(core.$border-width--thin)) !default;
8$hover--underline-width: props.def(--s-links--hover--underline-width, props.get(core.$border-width--medium)) !default; 9$hover--underline-width: props.def(--s-links--hover--underline-width, props.get(core.$border-width--medium)) !default;
9 10