Skip to content

Commit

Permalink
fix(slideout): button styles
Browse files Browse the repository at this point in the history
  • Loading branch information
aanchalm01 committed Jul 28, 2023
1 parent 34e41b7 commit e2d6478
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/components/KSlideout/KSlideout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,15 @@ const offsetTopValue = computed((): string => getSizeFromString(props.offsetTop)
cursor: pointer;
display: flex;
height: auto;
margin-left: var(--kui-space-60, $kui-space-60);
margin-left: var(--kui-space-50, $kui-space-50);
margin-top: var(--kui-space-60, $kui-space-60);
outline: inherit;
padding-top: var(--kui-space-60, $kui-space-60);
position: absolute;
transition: $tmp-animation-timing-2 ease;
width: 16px;
&:focus{
box-shadow: 0 0 0 2px var(--KButtonOutlineBorder, var(--blue-500, var(--kui-color-border-primary, $kui-color-border-primary)))
}
}
.close-button-end {
Expand All @@ -191,12 +194,15 @@ const offsetTopValue = computed((): string => getSizeFromString(props.offsetTop)
cursor: pointer;
display: flex;
height: auto;
margin-right: var(--kui-space-60, $kui-space-60);
margin-right: var(--kui-space-50, $kui-space-50);
margin-top: var(--kui-space-60, $kui-space-60);
outline: inherit;
padding-top: var(--kui-space-60, $kui-space-60);
position: absolute;
transition: $tmp-animation-timing-2 ease;
width: 16px;
&:focus{
box-shadow: 0 0 0 2px var(--KButtonOutlineBorder, var(--blue-500, var(--kui-color-border-primary, $kui-color-border-primary)))
}
}
.close-button-with-title {
Expand Down

0 comments on commit e2d6478

Please sign in to comment.