Skip to content

Commit

Permalink
Regression: Modal height (#12122)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored and sampaiodiego committed Sep 24, 2018
1 parent 4840dfc commit 2893b1f
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
.rc-modal {
display: flex;
flex-direction: column;

min-width: 400px;
max-width: 500px;
height: 100%;
height: auto;
max-height: 100%;

animation: dropdown-show 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
Expand Down Expand Up @@ -43,6 +46,7 @@
&__header {
display: flex;
flex-direction: row;
flex: 0 0;

margin-bottom: -16px;
padding: 16px;
Expand Down Expand Up @@ -117,6 +121,8 @@
&__footer {
display: flex;

flex: 0 0;

padding: 16px;

background: #f7f8fa;
Expand Down

0 comments on commit 2893b1f

Please sign in to comment.