Skip to content

Commit

Permalink
Merge pull request #115 from nih-sparc/remove-set-width-on-large-modal
Browse files Browse the repository at this point in the history
Made large modal responsive
  • Loading branch information
egauzens authored Aug 24, 2022
2 parents 7e27096 + 6899ffc commit 7a654cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nih-sparc/sparc-design-system-components",
"version": "0.26.21",
"version": "0.26.22",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
5 changes: 4 additions & 1 deletion src/components/LargeModal/src/LargeModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ export default {
flex-shrink: 0;
color: #fff;
max-width: 316px;
min-width: min-content;
width: 35%;
overflow: hidden;
position: relative;
padding: 2rem;
Expand All @@ -113,7 +115,8 @@ export default {
::v-deep .el-dialog {
border-radius: 0;
width: 868px;
width: fit-content;
max-width: 868px;
.el-dialog__body {
padding: 0;
Expand Down

0 comments on commit 7a654cc

Please sign in to comment.