Skip to content

Commit

Permalink
fix: issue with Example30 scss file, invalid rgb value, fixes #427 (#428
Browse files Browse the repository at this point in the history
)

fixed example30 rgba arguments in scss file
  • Loading branch information
baj1210 authored Oct 30, 2024
1 parent bf52768 commit 28cad57
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/examples/slickgrid/example30.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@


.editable-field {
// box-shadow: inset 0 0 0 1px lightblue !important;
background-color: rgba(227, 240, 251, 0.569) !important;
// Use rgba for opacity
background-color: rgba(227, 240, 251, 0.57) !important;
}


.slick-dark-mode .editable-field {
background-color: rgb(105 123 145 / 57%) !important
background-color: rgba(105, 123, 145, 0.57) !important;
}

.unsaved-editable-field {
Expand Down

0 comments on commit 28cad57

Please sign in to comment.