Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frontend finetuning after v3 graphql #126

Merged
merged 10 commits into from
Nov 5, 2024
Prev Previous commit
Next Next commit
Resolved feedback
  • Loading branch information
jordythevulder committed Nov 4, 2024
commit d4b89f5b594417fddd8a0177b30b8ccabb514182
2 changes: 1 addition & 1 deletion resources/views/account/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
@include('rapidez-ct::account.partials.account-features')
</x-slot:sidebar>
</x-rapidez-ct::layout>
</div>
</div>
@endsection
14 changes: 8 additions & 6 deletions resources/views/components/progress-bar/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
])
</span>
@foreach ($checkoutSteps as $checkoutStepKey => $checkoutStep)
<a href="{{ route('checkout', $checkoutStep) }}" @class([
'size-3 rounded text-center bg-ct-accent',
'cursor-pointer' => $currentStepKey < $checkoutStepKey,
'pointer-events-none !bg-ct-border' => $checkoutStepKey > $currentStepKey,
'outline-4 outline outline-ct-accent/20' => $checkoutStepKey === $currentStepKey
])></a>
<a href="{{ route('checkout', $checkoutStep) }}"
@class([
'size-3 rounded text-center bg-ct-accent',
'cursor-pointer' => $currentStepKey < $checkoutStepKey,
'pointer-events-none !bg-ct-border' => $checkoutStepKey > $currentStepKey,
'outline-4 outline outline-ct-accent/20' => $checkoutStepKey === $currentStepKey
])
></a>
@endforeach
</div>
2 changes: 1 addition & 1 deletion resources/views/components/usp-list.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<ul {{ $attributes->class('space-y-5 [&>*]:relative [&>*]:pl-7') }}>
<ul {{ $attributes->class('space-y-5 *:relative *:pl-7') }}>
{{ $slot }}
</ul>
Loading