Skip to content

Commit

Permalink
updated background gradient to 90deg
Browse files Browse the repository at this point in the history
  • Loading branch information
crabinak committed Dec 5, 2024
1 parent f978bab commit fd4636a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion atable/src/components/AExpansionRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ if (addNavigation) {
</style>
<style scoped>
.expandable-row:has(td.cell-modified) {
background: linear-gradient(45deg, var(--sc-cell-changed-color), transparent);
background: linear-gradient(90deg, var(--sc-cell-changed-color), transparent);
}
</style>
2 changes: 1 addition & 1 deletion atable/src/components/ARow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,6 @@ if (addNavigation) {
</style>
<style scoped>
.atable-row:has(td.cell-modified) {
background: linear-gradient(45deg, var(--sc-cell-changed-color), transparent);
background: linear-gradient(90deg, var(--sc-cell-changed-color), transparent);
}
</style>

0 comments on commit fd4636a

Please sign in to comment.