Skip to content

Commit

Permalink
fix(slideout): feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
aanchalm01 committed Jul 31, 2023
1 parent e2d6478 commit 904cda8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/KSlideout/KSlideout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ const offsetTopValue = computed((): string => getSizeFromString(props.offsetTop)
.content {
height: 100%;
// overflow: auto;
-ms-overflow-style: none; // IE 10+
scrollbar-width: none; // Firefox
&::-webkit-scrollbar { display: none; }
Expand Down Expand Up @@ -243,7 +242,7 @@ const offsetTopValue = computed((): string => getSizeFromString(props.offsetTop)
.border-styles {
border-left: var(--kui-border-width-10, $kui-border-width-10) solid var(--grey-300, var(--kui-color-border-neutral-weak, $kui-color-border-neutral-weak));
box-shadow: #0000000d -2px 0px 5px;
box-shadow: -2px 0px 5px var(--black-5, $tmp-color-black-5);
}
</style>

Expand Down
1 change: 1 addition & 0 deletions src/styles/_tmp-variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ $tmp-color-teal-100: #cdf1fe;
$tmp-color-teal-200: #91e1fc;

// Opaque colors
$tmp-color-black-5: rgba(0, 0, 0, 0.05);
$tmp-color-black-10: rgba(0, 0, 0, 0.1);
$tmp-color-black-45: rgba(0, 0, 0, 0.45);
$tmp-color-black-60: rgba(0, 0, 0, 0.6);
Expand Down

0 comments on commit 904cda8

Please sign in to comment.