Skip to content

Commit

Permalink
added public view page
Browse files Browse the repository at this point in the history
  • Loading branch information
sandygudie committed Dec 10, 2023
1 parent 4a2dddf commit 9a96468
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/views/PublicView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import 'vue3-toastify/dist/index.css'
import { ref, onMounted } from 'vue'
import { getPublicDetails } from '@/utilis/api/profile'
import { useRoute } from 'vue-router'
import ArrowIcon from '../components/icons/ArrowIcon.vue'
import Spinner from '../components/Spinner.vue'
const profileLinks = ref<{} | any>({
firstname: '',
Expand Down Expand Up @@ -64,7 +65,7 @@ onMounted(async () => {
:href="item.link"
target="_blank"
v-if="item.name"
class="text-sm px-4 flex no-underline justify-between px-1.5 my-4 bg-gray-400 text-white text-sm h-8 rounded-lg"
class="text-sm px-4 flex no-underline justify-between flex items-center justif-between px-1.5 my-4 bg-gray-400 text-white text-sm h-8 rounded-lg"
:style="{ backgroundColor: item.color }"
>
<span class="flex items-center gap-3">
Expand All @@ -74,7 +75,7 @@ onMounted(async () => {
/>
{{ item.name }}
</span>
<img src="../assets/icons/icon-arrow-right.svg" class="w-4" alt="arrow" />
<ArrowIcon class="text-sm fill-white" />
</a>
</template>
</div>
Expand Down

0 comments on commit 9a96468

Please sign in to comment.