We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106ded4 commit 643023dCopy full SHA for 643023d
src/lib/dialog/dialog.scss
@@ -6,6 +6,7 @@ $mat-dialog-padding: 24px !default;
6
$mat-dialog-border-radius: 2px !default;
7
$mat-dialog-max-width: 80vw !default;
8
$mat-dialog-max-height: 65vh !default;
9
+$mat-dialog-button-margin: 8px !default;
10
11
.mat-dialog-container {
12
@include mat-elevation(24);
@@ -59,4 +60,16 @@ $mat-dialog-max-height: 65vh !default;
59
60
&[align='center'] {
61
justify-content: center;
62
}
63
+
64
+ .mat-button + .mat-button,
65
+ .mat-raised-button + .mat-raised-button,
66
+ .mat-button + .mat-raised-button,
67
+ .mat-raised-button + .mat-button {
68
+ margin-left: $mat-dialog-button-margin;
69
70
+ [dir='rtl'] & {
71
+ margin-left: 0;
72
+ margin-right: $mat-dialog-button-margin;
73
+ }
74
75
0 commit comments