Skip to content

Commit

Permalink
fix: styles for user and fc cards
Browse files Browse the repository at this point in the history
  • Loading branch information
craigyu committed Oct 1, 2024
1 parent 803e14e commit 7730dc0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
6 changes: 0 additions & 6 deletions frontend/src/components/grantaccess/GrantAccess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,3 @@ function toRequestPayload(formData: any) {
</VeeForm>
</div>
</template>

<style lang="scss">
.grant-access-container {
@import '@/assets/styles/card.scss';
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,14 @@ watch(

<ForestClientCard
v-if="forestClientData.length > 0"
class="px-0"
class="fores-client-card-container px-0"
:forestClientData="forestClientData"
@remove-item="removeForestClientFromList"
/>
</template>

<style lang="scss">
.fores-client-card-container {
@import '@/assets/styles/card.scss';
}
</style>
8 changes: 7 additions & 1 deletion frontend/src/components/grantaccess/form/UserNameInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ watch(
<div
v-if="verifiedUserIdentity"
id="UserIdentityCard"
class="col-md-5 px-0"
class="user-id-card-container col-md-5 px-0"
>
<UserIdentityCard
:userIdentity="verifiedUserIdentity"
Expand All @@ -167,3 +167,9 @@ watch(
</div>
</div>
</template>

<style lang="scss">
.user-id-card-container {
@import '@/assets/styles/card.scss';
}
</style>

0 comments on commit 7730dc0

Please sign in to comment.