Skip to content

Commit

Permalink
Lighter border colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mationai committed May 26, 2021
1 parent 5f9a6e9 commit cc55926
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,9 @@
</script>

<style>
.data-grid-wrapper {
--borderColor: #ddd;
}
.row-action-line {
position: absolute;
left: 0;
Expand Down Expand Up @@ -944,7 +947,7 @@
}
.grid-row:not(:last-child) {
border-bottom: 1px solid #666;
border-bottom: 1px solid var(--borderColor);
}
.grid-cell {
Expand All @@ -959,7 +962,7 @@
}
.grid-cell:not(:last-child) {
border-right: 1px solid #666;
border-right: 1px solid var(--borderColor);
}
.selectedrow{
Expand Down

0 comments on commit cc55926

Please sign in to comment.