Skip to content

Commit df83f5f

Browse files
committed
feat(structure): update uikit responsiveness
1 parent a95078a commit df83f5f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

resources/views/uikit/simple-uikit.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
<div class="uk-flex uk-flex-between @if ($darkMode) uk-light @endif">
55
{{-- Previous Page Link --}}
66
@if ($paginator->onFirstPage())
7-
<button class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-1-5@s uk-width-1-6@l uk-margin-small-top"
7+
<button class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-margin-small-top"
88
disabled>
99
{!! __('pagination.previous') !!}
1010
</button>
1111
@else
12-
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-1-5@s uk-width-1-6@l uk-margin-small-top"
12+
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-margin-small-top"
1313
href="{{ $paginator->previousPageUrl() }}">
1414
{!! __('pagination.previous') !!}
1515
</a>
1616
@endif
1717

1818
{{-- Next Page Link --}}
1919
@if ($paginator->hasMorePages())
20-
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-1-5@s uk-width-1-6@l uk-margin-small-top"
20+
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-margin-small-top"
2121
href="{{ $paginator->nextPageUrl() }}">
2222
{!! __('pagination.next') !!}
2323
</a>
2424
@else
25-
<button class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-1-5@s uk-width-1-6@l uk-margin-small-top"
25+
<button class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-margin-small-top"
2626
disabled>
2727
{!! __('pagination.next') !!}
2828
</button>

resources/views/uikit/uikit.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
<div class="uk-flex uk-flex-between uk-flex-wrap @if ($darkMode) uk-light @endif">
55
{{-- Previous Page Link --}}
66
@if ($paginator->onFirstPage())
7-
<button class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-1-3@s uk-width-auto@m uk-margin-small-top"
7+
<button class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-width-1-5@m uk-width-small@l uk-margin-small-top"
88
disabled>
99
{!! __('pagination.previous') !!}
1010
</button>
1111
@else
12-
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-1-3@s uk-width-auto@m uk-margin-small-top"
12+
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-width-1-5@m uk-width-small@l uk-margin-small-top"
1313
href="{{ $paginator->previousPageUrl() }}">
1414
{!! __('pagination.previous') !!}
1515
</a>
1616
@endif
1717

1818
{{-- Next Page Link --}}
1919
@if ($paginator->hasMorePages())
20-
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-1-3@s uk-width-auto@m uk-flex-last@m uk-margin-small-top"
20+
<a class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-width-1-5@m uk-width-small@l uk-flex-last@l uk-margin-small-top"
2121
href="{{ $paginator->nextPageUrl() }}">
2222
{!! __('pagination.next') !!}
2323
</a>
2424
@else
25-
<button class="uk-button uk-button-small uk-button-default uk-width-auto@m uk-width-1-2 uk-flex-last@m uk-margin-small-top"
25+
<button class="uk-button uk-button-small uk-button-default uk-width-1-2 uk-width-small@s uk-width-1-5@m uk-width-small@l uk-flex-last@l uk-margin-small-top"
2626
disabled>
2727
{!! __('pagination.next') !!}
2828
</button>

0 commit comments

Comments
 (0)