Skip to content

Commit

Permalink
fix: allow background css variable to use e.g. linear-gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed May 22, 2020
1 parent 663299d commit 760f9b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
align-items: center;
align-content: center;
justify-content: center;
background-color: var(--background);
background: var(--background);
max-height: var(--height);
min-height: var(--height);
color: var(--color);
Expand Down
2 changes: 1 addition & 1 deletion src/components/device-status-bar/device-status-bar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
width: 100%;
z-index: 100;
.status-bar {
background-color: var(--background);
background: var(--background);
color: var(--color);
display: flex;
font-size: 12px;
Expand Down

0 comments on commit 760f9b0

Please sign in to comment.