Skip to content

Commit 150d318

Browse files
authored
Merge pull request #17325 from ashleyshenton/slideover-alignment
Allow alignment to affect slideovers
2 parents 4d37245 + 94920fe commit 150d318

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/support/resources/views/components/modal/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ class="fi-modal-close-overlay"
157157
'fi-modal-window-has-icon' => $hasIcon,
158158
'fi-modal-window-has-sticky-header' => $stickyHeader,
159159
'fi-hidden' => ! $visible,
160-
(($alignment instanceof Alignment) && (! $slideOver)) ? "fi-align-{$alignment->value}" : null,
160+
($alignment instanceof Alignment) ? "fi-align-{$alignment->value}" : null,
161161
($width instanceof Width) ? "fi-width-{$width->value}" : (is_string($width) ? $width : null),
162162
])
163163
}}

0 commit comments

Comments
 (0)