Skip to content

Commit 87a5777

Browse files
committed
Add CSS variables for separator color and size
1 parent 48fe924 commit 87a5777

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## [Unreleased]
22
- Fix default icon size from 1em to 1rem
3+
- Add CSS variables for separator color and size
34

45
## 3.0.1 - 2025-11-15
56
- Remove debounce from filter method in command controller
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
.separator {
2-
background-color: var(--color-border-dark);
2+
background-color: var(--sep-color, var(--color-border));
33
block-size: 1px;
44
flex-shrink: 0;
5-
inline-size: var(--size-full);
5+
inline-size: var(--sep-size, var(--size-full));
66
}
77

88
.separator-vertical {
9-
background-color: var(--color-border-dark);
10-
block-size: var(--size-full);
9+
background-color: var(--sep-color, var(--color-border));
10+
block-size: var(--sep-size, var(--size-full));
1111
flex-shrink: 0;
1212
inline-size: 1px;
1313
}

0 commit comments

Comments
 (0)