Skip to content

Commit

Permalink
Integrate Changes
Browse files Browse the repository at this point in the history
Integrate Changes (#421)
  • Loading branch information
VictorTavaress committed May 15, 2024
2 parents 2d182ad + 69dd960 commit 939ec30
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-polar-bear",
"version": "4.3.5",
"version": "4.3.6",
"author": "adapcon",
"scripts": {
"storybook": "start-storybook --quiet -p 6006 -s ./src/static",
Expand Down
3 changes: 3 additions & 0 deletions src/components/Inputs/MultiSelect/MultiSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,9 @@ export default {
&::-webkit-scrollbar {
width: 2px;
}
&:hover::-webkit-scrollbar {
width: 8px;
}
&::-webkit-scrollbar-track {
background: none;
}
Expand Down
4 changes: 4 additions & 0 deletions src/components/Inputs/Select/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,10 @@ export default {
&::-webkit-scrollbar {
width: 2px;
transition: width 0.3s ease;
}
&:hover::-webkit-scrollbar {
width: 8px;
}
&::-webkit-scrollbar-track {
background: none;
Expand Down
37 changes: 37 additions & 0 deletions src/components/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -285,12 +285,24 @@
@include pb-scroll-base;
&::-webkit-scrollbar-thumb {
background: var(--color-primary);
width: 3px;
transition: width 0.3s ease;
}

&:hover::-webkit-scrollbar {
width: 8px;
}

&-large {
@include pb-scroll-large;
&::-webkit-scrollbar-thumb {
background: var(--color-primary);
width: 8px;
transition: width 0.3s ease;
}

&:hover::-webkit-scrollbar-thumb {
width: 16px;
}
}
}
Expand All @@ -299,12 +311,24 @@
@include pb-scroll-base;
&::-webkit-scrollbar-thumb {
background: var(--color-secondary);
width: 3px;
transition: width 0.3s ease;
}

&:hover::-webkit-scrollbar-thumb {
width: 12px;
}

&-large {
@include pb-scroll-large;
&::-webkit-scrollbar-thumb {
background: var(--color-secondary);
width: 8px;
transition: width 0.3s ease;
}

&:hover::-webkit-scrollbar-thumb {
width: 16px;
}
}
}
Expand All @@ -313,16 +337,29 @@
@include pb-scroll-base;
&::-webkit-scrollbar-thumb {
background: var(--color-white);
width: 3px;
transition: width 0.3s ease;
}

&:hover::-webkit-scrollbar-thumb {
width: 12px;
}

&-large {
@include pb-scroll-large;
&::-webkit-scrollbar-thumb {
background: var(--color-white);
width: 8px;
transition: width 0.3s ease;
}

&:hover::-webkit-scrollbar-thumb {
width: 16px;
}
}
}


// PB Typography
@mixin pb-font-light { font-weight: 300 !important; }
@mixin pb-font-regular { font-weight: 400 !important; }
Expand Down

0 comments on commit 939ec30

Please sign in to comment.