Skip to content

Commit

Permalink
fix(MdScrollbar): fix scrollbar color and size to better match specs
Browse files Browse the repository at this point in the history
  • Loading branch information
marcos-hotmart committed Aug 22, 2017
1 parent 485e612 commit 5fb4123
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/app/pages/Home/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default {
.home-page {
width: 100%;
height: calc(100vh - 64px);
min-height: calc(100vh - 64px);
display: flex;
flex-direction: column;
justify-content: center;
Expand Down
4 changes: 2 additions & 2 deletions src/base/scrollbar.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.md-scrollbar {
&::-webkit-scrollbar {
width: 7px;
height: 7px;
width: 8px;
height: 8px;
}

&::-webkit-scrollbar-button {
Expand Down
2 changes: 1 addition & 1 deletion src/theme/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ $md-color-levels: (
icon: #fff,
icon-disabled: rgba(#fff, .5),
divider: rgba(#fff, .12),
scrollbar: #212121,
scrollbar: #9E9E9E,
scrollbar-background: #616161
)
);

0 comments on commit 5fb4123

Please sign in to comment.