Skip to content

Commit

Permalink
RSE-1608: Use variables for padding
Browse files Browse the repository at this point in the history
  • Loading branch information
lisandro-compucorp committed Jun 4, 2021
1 parent 1655f81 commit 0493fca
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scss/civicrm/contact/pages/_export.scss
Original file line number Diff line number Diff line change
Expand Up @@ -148,24 +148,26 @@
}

.crm-export-ui-save-mapping-dialog {
$export-form-label-width: 190px;

&.ui-dialog-content.ui-widget-content {
padding: 0;
}

.crm-form-block {
box-shadow: none;
margin-bottom: 0;
padding: 20px;
padding: $panel-body-padding;

label {
display: inline-block;
width: 190px;
width: $export-form-label-width;
}
}

.ui-dialog-buttonpane.ui-widget-content {
height: auto;
padding: $modal-inner-padding ($modal-inner-padding * 2);
padding: $modal-inner-padding;
position: inherit;
width: auto;

Expand Down

0 comments on commit 0493fca

Please sign in to comment.