feat(profile): add cursor pointer
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Philipp Dormann 2024-12-16 17:10:27 +01:00
parent 9ddb188ef6
commit 1d7cd601ee
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

View File

@ -9,6 +9,7 @@
pr-0
w-full
md:w-auto md:text-left
cursor-pointer
text-center text-black
dark:text-gray-200
">
@ -34,6 +35,7 @@
hover:bg-blue-600 hover:shadow-lg
w-full
md:w-auto
cursor-pointer
mb-1
md:mr-1
" @click="get_registration">
@ -58,6 +60,7 @@
hover:bg-blue-600 hover:shadow-lg
w-full
md:w-auto
cursor-pointer
mb-1
md:mr-1
" @click="get_certificate">
@ -82,6 +85,7 @@
hover:bg-red-700 hover:shadow-lg
w-full
md:w-auto
cursor-pointer
" @click="() => {
state.delete_active = true;
}
@ -109,6 +113,7 @@
md:mb-auto
w-full
md:w-auto
cursor-pointer
bg-blue-500
hover:bg-blue-600 hover:shadow-lg
" @click="() => {
@ -133,6 +138,7 @@
rounded-md
w-full
md:w-auto
cursor-pointer
bg-red-600
hover:bg-red-700 hover:shadow-lg
md:ml-1
@ -161,7 +167,7 @@
" :class="{
'tab-active border-b-2 font-medium border-blue-500':
state.activetab === 'profile',
}" class="tab tab-underline py-4 px-6 block" type="button">
}" class="tab tab-underline cursor-pointer py-4 px-6 block" type="button">
{{ $t("profile") }}
</button>
</div>
@ -172,7 +178,7 @@
" :class="{
'tab-active border-b-2 font-medium border-blue-500':
state.activetab === 'laptimes',
}" class="tab tab-underline py-4 px-6 block" type="button">
}" class="tab tab-underline cursor-pointer py-4 px-6 block" type="button">
{{ $t("lap_times") }}
</button>
</div>
@ -183,7 +189,7 @@
" :class="{
'tab-active border-b-2 font-medium border-blue-500':
state.activetab === 'sponsorings',
}" class="tab tab-underline py-4 px-6 block" type="button">
}" class="tab tab-underline cursor-pointer py-4 px-6 block" type="button">
{{ $t("sponsoring") }}
</button>
</div>