Skip to content

Commit

Permalink
Fixed header background in dark theme.
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Jul 28, 2018
1 parent 9d18182 commit c5e3071
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scss/components/_window-switcher.scss
Expand Up @@ -11,14 +11,14 @@ app-window-switcher {

background:
//Left start and right start 'inside' container colors (they overlap the shadows)
linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0)),
linear-gradient(-90deg, white 0%, rgba(255, 255, 255, 0)) 100% 0,
linear-gradient(90deg, $clr-header-bgColor 0%, rgba(255, 255, 255, 0)),
linear-gradient(-90deg, $clr-header-bgColor 0%, rgba(255, 255, 255, 0)) 100% 0,
//Left and right scroll shadows
linear-gradient(90deg, $shadow-color, rgba(0, 0, 0, 0)),
linear-gradient(-90deg, $shadow-color, rgba(0, 0, 0, 0)) 100% 0;

background-repeat: no-repeat;
background-color: #fff;
background-color: $clr-header-bgColor;
background-size: 100px 100%, 100px 100%, $shadow-weight $shadow-height, $shadow-weight $shadow-height;
background-attachment: local, local, scroll, scroll;

Expand All @@ -28,7 +28,7 @@ app-window-switcher {
height: 0px;
}
&::-webkit-scrollbar-thumb {
background-color: #000000;
background-color: $theme-bg-color;
}
&::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
Expand Down

0 comments on commit c5e3071

Please sign in to comment.