#1137 Right Align Filter Overlay "select all"

This commit is contained in:
Sebastian
2020-10-16 11:47:21 +02:00
parent 1736fbd838
commit 18cc0e63ad
2 changed files with 5 additions and 9 deletions

View File

@@ -5,7 +5,7 @@
>
<button
type="button"
class="isa-btn isa-p-0 isa-font-weight-emphasis"
class="isa-btn isa-p-0 isa-font-weight-emphasis isa-ml-auto"
[class.isa-font-color-customer]="module === 'Customer'"
[class.isa-font-lightgrey]="module !== 'Customer'"
*ngIf="!max"

View File

@@ -66,14 +66,10 @@ $sides: (top, bottom, left, right); // Leave this variable alone
padding-top: #{-$space}px !important;
padding-bottom: #{-$space}px !important;
}
}
@each $side in $sides {
.isa-m#{str-slice($side, 0, 1)}-n#{$space} {
margin-#{$side}: #{-$space}px !important;
}
.isa-p#{str-slice($side, 0, 1)}-n#{$space} {
padding-#{$side}: #{-$space}px !important;
}
@each $side in $sides {
.isa-m#{str-slice($side, 0, 1)}-auto {
margin-#{$side}: auto !important;
}
}