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

Fix "Complete and Continue" button in courses not clickable #337

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,20 @@ class="my-6 w-full overflow-hidden py-8 | md:flex gap-8 justify-between links-bl
@csrf


<span class="cursor-pointer
<button type="submit" class="cursor-pointer
bg-blue bg-opacity-75 hover:bg-opacity-100 rounded-sm
border-2 border-transparent
justify-center flex items-center
px-6 min-h-10 text-white
font-sans-bold
transition-bg duration-300
focus:outline-none focus:border-blue-light no-underline whitespace-nowrap">
<button type="submit" class="truncate"><span class="font-semibold md:hidden">Next: </span> Complete and
Continue</button>
<span class="truncate"><span class="font-semibold md:hidden">Next: </span> Complete and
Continue</span>
<span class="w-1 fill-current text-white ml-1 hidden | md:inline-block">
{{ app_svg('icons/far-angle-right') }}
</span>
</span>
</button>
</form>
@endif
</div>
Expand Down