Adjust modal body styles to match design spec
Set min-height to 80px via $modal-body-height Set padding to 16px overall and 48px on right via $grid-size
This commit is contained in:
parent
01fea14f51
commit
563bfca700
2 changed files with 3 additions and 2 deletions
|
@ -35,7 +35,8 @@
|
||||||
background-color: $modal-body-bg;
|
background-color: $modal-body-bg;
|
||||||
line-height: $line-height-base;
|
line-height: $line-height-base;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: #{3 * $grid-size} #{2 * $grid-size};
|
min-height: $modal-body-height;
|
||||||
|
padding: #{2 * $grid-size} #{6 * $grid-size} #{2 * $grid-size} #{2 * $grid-size};
|
||||||
text-align: left;
|
text-align: left;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
|
|
||||||
|
|
|
@ -805,7 +805,7 @@ $border-color-settings: #e1e1e1;
|
||||||
/*
|
/*
|
||||||
Modals
|
Modals
|
||||||
*/
|
*/
|
||||||
$modal-body-height: 134px;
|
$modal-body-height: 80px;
|
||||||
$modal-border-color: #e9ecef;
|
$modal-border-color: #e9ecef;
|
||||||
|
|
||||||
$priority-label-empty-state-width: 114px;
|
$priority-label-empty-state-width: 114px;
|
||||||
|
|
Loading…
Reference in a new issue