Skip to content

Commit

Permalink
fix: modal and drawer input outline (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
jer3m01 authored Dec 13, 2023
1 parent b4d9d31 commit 7c5993a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/drawer/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@
flex-grow: 1;
overflow-y: auto;
height: 0;
margin: calc(var(--jdd-accessibility-outline-width) * -1);
padding: var(--jdd-accessibility-outline-width);
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions src/components/modal/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,14 @@
flex-direction: column;
flex-shrink: 1;
overflow: hidden;
margin: calc(var(--jdd-accessibility-outline-width) * -1);
padding: var(--jdd-accessibility-outline-width);

.modal-description-content {
flex-shrink: 1;
overflow-y: auto;
margin: calc(var(--jdd-accessibility-outline-width) * -1);
padding: var(--jdd-accessibility-outline-width);
}
}

Expand Down

0 comments on commit 7c5993a

Please sign in to comment.