Skip to content

Commit

Permalink
#934 feat: Iris: same font as Aurora
Browse files Browse the repository at this point in the history
  • Loading branch information
aqordeon committed Oct 3, 2024
1 parent 8ffbd39 commit e2a6d5f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
Binary file added resources/js/Assets/raleway.woff2
Binary file not shown.
9 changes: 8 additions & 1 deletion resources/js/Layouts/Iris.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,11 @@ const colorThemed = usePage().props?.iris?.color ? usePage().props?.iris?.color
<Notification :notification="props" />
</template>
</notifications>
</template>
</template>

<style>
@font-face {
font-family: 'Raleway';
src: url("@/Assets/raleway.woff2");
}
</style>
6 changes: 3 additions & 3 deletions resources/js/Layouts/Iris/IrisLoginInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import { inject } from 'vue'
import { aikuLocaleStructure } from '@/Composables/useLocaleStructure'
library.add(faHeart, faShoppingCart, faSignOut, faUser, faSignIn, faUserPlus)
const isLoggedIn = ref(false)
const isLoggedIn = ref(true)
const isDropshipping = ref(false)
const locale = inject('locale', aikuLocaleStructure)
</script>

<template>
<div id="top_bar" class="bg-[rgb(75,80,88)] text-white py-1 px-4 flex justify-between">
<div id="top_bar" class="bg-[rgb(75,80,88)] text-white py-1 px-4 flex justify-between font-[Raleway]">
<div class="flex">
<div>Hello,</div>

Expand Down Expand Up @@ -57,7 +57,7 @@ const locale = inject('locale', aikuLocaleStructure)
<span class="ordered_products_number">11</span>
<FontAwesomeIcon icon='fal fa-shopping-cart' class='text-base px-[5px]' v-tooltip="trans('Basket')" fixed-width aria-hidden='true' />
<span class="order_amount" title="" style="font-weight: 600; font-size: 1.1rem;">
{{ }}
${{ 4561237486 }}
</span>
</a>
</template>
Expand Down

0 comments on commit e2a6d5f

Please sign in to comment.