Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonvarga authored and github-actions[bot] committed Feb 4, 2025
1 parent c2a4936 commit cbecf17
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
10 changes: 4 additions & 6 deletions resources/js/components/revision-history/Revision.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@
>{{ revision.user.name || revision.user.email }} &ndash;</template
>
{{
date
.toDate()
.toLocaleTimeString($config.get('locale').replace('_', '-'), {
hour: 'numeric',
minute: '2-digit',
})
date.toDate().toLocaleTimeString($config.get('locale').replace('_', '-'), {
hour: 'numeric',
minute: '2-digit',
})
}}
</div>
</div>
Expand Down
3 changes: 3 additions & 0 deletions resources/views/collections/empty.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,6 @@ class="text-blue text-sm rtl:ml-2 ltr:mr-2">{{ $blueprint->title() }} @rarr</a>
@stop
</div>
</div>

</div>
</div>
1 change: 1 addition & 0 deletions resources/views/licensing.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ class="little-dot {{ $site->valid() ? 'bg-green-600' : 'bg-red-500' }} ltr:mr-2
class="little-dot {{ $statamic->valid() ? 'bg-green-600' : 'bg-red-500' }} ltr:mr-2 rtl:ml-2"
></span>
{{ __('Statamic') }}

@if ($statamic->pro())
<span class="text-pink">{{ __('Pro') }}</span>
@else
Expand Down
4 changes: 3 additions & 1 deletion resources/views/utilities/git.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
@csrf

<div class="flex items-center">
<button type="submit" class="btn-primary" {{ $statuses ? '' : 'disabled' }}>{{ __('Commit') }}</button>
<button type="submit" class="btn-primary" {{ $statuses ? '' : 'disabled' }}>
{{ __('Commit') }}
</button>
</div>
</form>
</div>
Expand Down

0 comments on commit cbecf17

Please sign in to comment.