summaryrefslogtreecommitdiffstats
path: root/src/scopes/_tables.scss
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2026-07-22 07:55:43 +0200
committerVolpeon <git@volpeon.ink>2026-07-22 07:55:43 +0200
commit5216739cf9b084f7388d687b84044f522d267cbf (patch)
tree8619118c495fbe8f8aaf6680d1f391990ccb5feb /src/scopes/_tables.scss
parentUse pkg: to import include-media (diff)
downloadiro-design-5216739cf9b084f7388d687b84044f522d267cbf.tar.gz
iro-design-5216739cf9b084f7388d687b84044f522d267cbf.tar.bz2
iro-design-5216739cf9b084f7388d687b84044f522d267cbf.zip
Use iro-sass via pkg:
Diffstat (limited to 'src/scopes/_tables.scss')
-rw-r--r--src/scopes/_tables.scss16
1 files changed, 8 insertions, 8 deletions
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 @@
1@use 'sass:meta'; 1@use 'sass:meta';
2@use 'iro-sass/src/bem'; 2@use 'pkg:iro-sass/src/bem';
3@use 'iro-sass/src/props'; 3@use 'pkg:iro-sass/src/props';
4@use '../props' as *; 4@use '../props' as *;
5@use '../objects/table.vars' as table; 5@use '../objects/table.vars' as table;
6 6
@@ -62,35 +62,35 @@
62 @include bem.modifier('box') { 62 @include bem.modifier('box') {
63 td { 63 td {
64 background-color: props.get(table.$box--bg-color); 64 background-color: props.get(table.$box--bg-color);
65 65
66 &:first-child { 66 &:first-child {
67 border-inline-start-width: props.get(table.$border-width); 67 border-inline-start-width: props.get(table.$border-width);
68 } 68 }
69 69
70 &:last-child { 70 &:last-child {
71 border-inline-end-width: props.get(table.$border-width); 71 border-inline-end-width: props.get(table.$border-width);
72 } 72 }
73 } 73 }
74 74
75 tr { 75 tr {
76 &:first-child { 76 &:first-child {
77 td { 77 td {
78 &:first-child { 78 &:first-child {
79 border-start-start-radius: props.get(table.$rounding); 79 border-start-start-radius: props.get(table.$rounding);
80 } 80 }
81 81
82 &:last-child { 82 &:last-child {
83 border-start-end-radius: props.get(table.$rounding); 83 border-start-end-radius: props.get(table.$rounding);
84 } 84 }
85 } 85 }
86 } 86 }
87 87
88 &:last-child { 88 &:last-child {
89 td { 89 td {
90 &:first-child { 90 &:first-child {
91 border-end-start-radius: props.get(table.$rounding); 91 border-end-start-radius: props.get(table.$rounding);
92 } 92 }
93 93
94 &:last-child { 94 &:last-child {
95 border-end-end-radius: props.get(table.$rounding); 95 border-end-end-radius: props.get(table.$rounding);
96 } 96 }