Skip to content

Commit 16e2f49

Browse files
authored
fix: Divider variable color (#285)
1 parent 44f8198 commit 16e2f49

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
@use '../../styles/colors.scss';
22
@use '../../styles/lengths.scss';
33

4+
$divider-color: theme('divider-color', colors.neutral(300));
5+
46
.rcx-divider {
57
margin-block: lengths.margin(8);
68

7-
border: lengths.border-width(1) solid colors.neutral(300);
9+
border: lengths.border-width(1) solid $divider-color;
810
}

packages/fuselage/src/components/Sidebar/styles.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,6 @@ $sidebar-item-color-selected: colors.foreground('hint');
113113
padding-block: lengths.padding(12);
114114
padding-inline: lengths.padding(16);
115115

116-
color: colors.foreground(info);
116+
color: colors.foreground(hint);
117117
}
118118
}

0 commit comments

Comments
 (0)