Skip to content

Commit

Permalink
fix(tablet): organizational assets page
Browse files Browse the repository at this point in the history
  • Loading branch information
pugakn committed Oct 26, 2022
1 parent 5bae255 commit 44d0bf6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/components/organization-asset/asset-card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ widget.cursor-pointer.item(:class="{'mobile-item': isMobile, 'desktop-item': !is
height: 281px
@media (max-width: $breakpoint-sm)
max-width: 100%
@media (max-width: $breakpoint-md)
max-width: 47.7%
.description
height: 95px
Expand Down
3 changes: 2 additions & 1 deletion src/pages/dho/OrganizationalAssets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export default {
<template lang="pug">
.organizational-assets
.row.full-width(v-if="$q.screen.gt.sm")
.row.full-width(v-if="$q.screen.gt.md")
.col-9.q-py-md
base-placeholder(v-if="!(list && list.length)" title= "No Badges" subtitle="Your organization doesn't have any badges yet. You can create one by clicking the button below."
icon= "fas fa-id-badge" :actionButtons="[{label: 'Create a new badge', color: 'primary', onClick: () => routeTo('proposals/create')}]" )
Expand All @@ -255,6 +255,7 @@ export default {
:optionArray.sync="optionArray",
:showCircle="false"
:showViewSelector="false"
:style="'width: 400px; right: 0; left: auto;'"
:showToggle="false")
.col-12.q-py-md
base-placeholder(v-if="!(list && list.length)" title= "No Badges" subtitle="Your organization doesn't have any badges yet. You can create one by clicking the button below."
Expand Down
4 changes: 2 additions & 2 deletions src/pages/support/Support.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default {
<template lang="pug">
q-page.page-support
.row.full-width
.transactions(:class="{'col-9': $q.screen.gt.sm, 'q-px-sm': $q.screen.gt.sm, 'col-12': !$q.screen.gt.sm, 'q-my-md': $q.screen.gt.sm}")
.transactions(:class="{'col-9': $q.screen.gt.md, 'q-px-sm': $q.screen.gt.md, 'col-12': !$q.screen.gt.md, 'q-my-md': $q.screen.gt.md}")
widget(title="Transactions")
.text-body2.q-mt-sm.text-weight-thin.text-grey-7.q-my-md When you encounter a error message, please copy paste the transaction into the DAO Support Channel.
.text-subtitle1.q-mt-sm.text-bold.q-mt-xl Transaction Log
Expand All @@ -69,7 +69,7 @@ q-page.page-support
q-item-section(side v-if="notification.status === 'success'")
q-btn(dense flat size="8px" color="primary" icon="fas fa-external-link-alt" @click="openUrl(`/transaction/${notification.transactionId}`)" target="_blank")
q-tooltip Display on block explorer
.relative-position.q-my-md(:class="{'col-3': $q.screen.gt.sm, 'q-pl-sm': $q.screen.gt.sm,'col-12': !$q.screen.gt.sm}")
.relative-position.q-my-md(:class="{'col-3': $q.screen.gt.md, 'q-pl-sm': $q.screen.gt.md,'col-12': !$q.screen.gt.md}")
widget(title="Do you have Questions?")
.text-body2.q-mt-sm.text-weight-thin.text-grey-7.q-my-md Find our full documentation here
q-btn.q-px-xl.q-mt-xl(rounded no-caps color="primary" type="a" href="https://notepad.hypha.earth/5dC66nNXRVGpb1aTHaRJXw" target="_blank") Open wiki
Expand Down

0 comments on commit 44d0bf6

Please sign in to comment.