Skip to content

Commit

Permalink
Changing card style (#996)
Browse files Browse the repository at this point in the history
  • Loading branch information
jogaj authored Jul 7, 2023
1 parent 6b63d53 commit ce30518
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions projects/swimlane/ngx-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## HEAD (unreleased)

- Breaking style changes (`ngx-card`): Background change from gradient to solid color. Removing left border from ngx-section.

## 44.6.0 (2023-5-18)

- Enhancement (`ngx-select-dropdown`): A new event is triggered when the X button is pressed to clear the filter query.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ $color-accent-grey: linear-gradient(180deg, $color-blue-grey-100 0%, $color-blue
$card-accent-thickness: 4px;

$color-background-grey: linear-gradient(180deg, $color-blue-grey-750 0%, $color-blue-grey-800 100%);
$color-flat-background: $color-blue-grey-800;

$card-outline-border-thickness: 3px;

Expand All @@ -29,7 +30,7 @@ $card-vertical-gutter: 20px;

.ngx-card {
display: flex;
background: $color-background-grey;
background: $color-flat-background;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
border-radius: 2px;

Expand Down Expand Up @@ -177,7 +178,6 @@ $card-vertical-gutter: 20px;
justify-content: center;
height: 100%;
padding: 0 $card-horizontal-gutter;
border-left: 1px #313847 solid;

&--description {
flex-basis: 28%;
Expand Down

0 comments on commit ce30518

Please sign in to comment.