Skip to content

Commit

Permalink
Tailwind styling clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jardakotesovec committed Jul 18, 2024
1 parent f61ad78 commit a054596
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 34 deletions.
34 changes: 17 additions & 17 deletions src/pages/acceptInvitation/AcceptInvitationPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,23 @@
</div>
</Step>
</Steps>
<ButtonRow
class="flex items-center justify-end border border-t-0 border-light p-8"
>
<PkpButton :is-warnable="true" @click="store.cancel">
{{ t('common.cancel') }}
</PkpButton>
<PkpButton v-if="!store.isOnFirstStep" @click="store.previousStep">
{{ t('common.back') }}
</PkpButton>
<PkpButton
v-if="!store.isOnFirstStep"
:is-primary="true"
@click="store.nextStep"
>
{{ store.stepButtonTitle }}
</PkpButton>
</ButtonRow>
<div class="border-x border-b border-light p-8">
<ButtonRow>
<PkpButton :is-warnable="true" @click="store.cancel">
{{ t('common.cancel') }}
</PkpButton>
<PkpButton v-if="!store.isOnFirstStep" @click="store.previousStep">
{{ t('common.back') }}
</PkpButton>
<PkpButton
v-if="!store.isOnFirstStep"
:is-primary="true"
@click="store.nextStep"
>
{{ store.stepButtonTitle }}
</PkpButton>
</ButtonRow>
</div>
</div>
</template>

Expand Down
4 changes: 2 additions & 2 deletions src/pages/acceptInvitation/AcceptInvitationReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
></FormDisplayItemBasic>
</div>
</div>
<div class="border-t border-solid border-[#ddd] p-8">
<div class="border-t border-light p-8">
<div class="flex items-center justify-between p-4">
<h3>{{ t('acceptInvitation.review.userDetails') }}</h3>
<PkpButton
Expand Down Expand Up @@ -57,7 +57,7 @@
</div>
</div>
</div>
<div class="border-t border-solid border-[#ddd] p-8">
<div class="border-t border-light p-8">
<div class="flex items-center p-4">
<h3>Roles</h3>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/userInvitation/UserInvitationHeader.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div class="pb-8">
<h1 ref="wrapper" class="mb-1 ml-0 mr-0 mt-8 flex text-3xl-bold">
<h1 ref="wrapper" class="mb-1 mt-8 flex text-3xl-bold">
{{ pageTitle }}
</h1>
<p class="mb-0 ml-0 mr-0 mt-1 text-lg-normal leading-5">
<p class="mt-1 text-lg-normal">
{{ pageTitleDescription }}
</p>
</div>
Expand Down
26 changes: 13 additions & 13 deletions src/pages/userInvitation/UserInvitationPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@
</div>
</Step>
</Steps>
<ButtonRow
class="flex items-center justify-end border border-t-0 border-light p-8"
>
<PkpButton :is-warnable="true" @click="store.cancel">
{{ t('common.cancel') }}
</PkpButton>
<PkpButton v-if="!store.isOnFirstStep" @click="store.previousStep">
{{ t('common.back') }}
</PkpButton>
<PkpButton :is-primary="true" @click="store.nextStep">
{{ store.currentStep.nextButtonLabel }}
</PkpButton>
</ButtonRow>
<div class="border-x border-b border-light p-8">
<ButtonRow>
<PkpButton :is-warnable="true" @click="store.cancel">
{{ t('common.cancel') }}
</PkpButton>
<PkpButton v-if="!store.isOnFirstStep" @click="store.previousStep">
{{ t('common.back') }}
</PkpButton>
<PkpButton :is-primary="true" @click="store.nextStep">
{{ store.currentStep.nextButtonLabel }}
</PkpButton>
</ButtonRow>
</div>
</div>
</template>

Expand Down

0 comments on commit a054596

Please sign in to comment.