Skip to content

Commit

Permalink
Fix: xl modifier added (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiclasNorin authored Oct 3, 2023
1 parent 87c47bb commit eda50de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/php/Component/Drawer/Drawer.Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function testDefaultScreenSizesShowsOnXsAndSmOnly()
{
// Arrange
$data = [];
$expectedClassNames = 'u-display--none@md u-display--none@lg';
$expectedClassNames = 'u-display--none@md u-display--none@lg u-display--none@xl';

// Act
$component = new Drawer($data);
Expand Down
2 changes: 1 addition & 1 deletion source/php/Component/Timeline/timeline.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{!! $event['timelineDate'] !!}
</div>
<div class="{{ $baseClass }}__marker">
<div class="{{ $baseClass }}__date u-visibility--hidden@md u-visibility--hidden@lg">
<div class="{{ $baseClass }}__date u-visibility--hidden@md u-visibility--hidden@lg u-visibility--hidden@xl">
{!! $event['timelineDate'] !!}
</div>
</div>
Expand Down

0 comments on commit eda50de

Please sign in to comment.