Compare commits

..

2 Commits
1.2.1 ... 1.2.2

Author SHA1 Message Date
c8ceae5cf0
🚀Bumped version to v1.2.2
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/tag/release Pipeline was successful
2024-12-16 17:10:39 +01:00
1d7cd601ee
feat(profile): add cursor pointer
Some checks failed
ci/woodpecker/push/build Pipeline failed
2024-12-16 17:10:27 +01:00
3 changed files with 17 additions and 4 deletions

View File

@ -2,10 +2,17 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC. All notable changes to this project will be documented in this file. Dates are displayed in UTC.
#### [1.2.2](https://git.odit.services/lfk/selfservice/compare/1.2.1...1.2.2)
- feat(profile): add cursor pointer [`1d7cd60`](https://git.odit.services/lfk/selfservice/commit/1d7cd601ee027dd7df0405079e208d03078210bb)
#### [1.2.1](https://git.odit.services/lfk/selfservice/compare/1.2.0...1.2.1) #### [1.2.1](https://git.odit.services/lfk/selfservice/compare/1.2.0...1.2.1)
> 16 December 2024
- feat(profile): show total distance [`55abb9e`](https://git.odit.services/lfk/selfservice/commit/55abb9ed22e4c66c05536897ba33b12915eea226) - feat(profile): show total distance [`55abb9e`](https://git.odit.services/lfk/selfservice/commit/55abb9ed22e4c66c05536897ba33b12915eea226)
- refactor(profile): replace styles with tailwindcss [`c34a8a7`](https://git.odit.services/lfk/selfservice/commit/c34a8a7fcc77a0fa27280365ebf2382fbffc1e61) - refactor(profile): replace styles with tailwindcss [`c34a8a7`](https://git.odit.services/lfk/selfservice/commit/c34a8a7fcc77a0fa27280365ebf2382fbffc1e61)
- 🚀Bumped version to v1.2.1 [`9ddb188`](https://git.odit.services/lfk/selfservice/commit/9ddb188ef659742018f00d786e030f80a0d9bbc5)
- feat(profile): updated tab alignment [`d564131`](https://git.odit.services/lfk/selfservice/commit/d5641312ca0b35a5c5ab9b7b19ed3a40971ac4fd) - feat(profile): updated tab alignment [`d564131`](https://git.odit.services/lfk/selfservice/commit/d5641312ca0b35a5c5ab9b7b19ed3a40971ac4fd)
#### [1.2.0](https://git.odit.services/lfk/selfservice/compare/1.1.2...1.2.0) #### [1.2.0](https://git.odit.services/lfk/selfservice/compare/1.1.2...1.2.0)

View File

@ -1,6 +1,6 @@
{ {
"name": "@odit/lfk-selfservice", "name": "@odit/lfk-selfservice",
"version": "1.2.1", "version": "1.2.2",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

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