Skip to content

Commit cc55926

Browse files
committed
Lighter border colors
1 parent 5f9a6e9 commit cc55926

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/index.svelte

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -814,6 +814,9 @@
814814
</script>
815815

816816
<style>
817+
.data-grid-wrapper {
818+
--borderColor: #ddd;
819+
}
817820
.row-action-line {
818821
position: absolute;
819822
left: 0;
@@ -944,7 +947,7 @@
944947
}
945948
946949
.grid-row:not(:last-child) {
947-
border-bottom: 1px solid #666;
950+
border-bottom: 1px solid var(--borderColor);
948951
}
949952
950953
.grid-cell {
@@ -959,7 +962,7 @@
959962
}
960963
961964
.grid-cell:not(:last-child) {
962-
border-right: 1px solid #666;
965+
border-right: 1px solid var(--borderColor);
963966
}
964967
965968
.selectedrow{

0 commit comments

Comments
 (0)