Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommytrg committed Jul 13, 2023
1 parent 2a9d93e commit 30ea138
Show file tree
Hide file tree
Showing 66 changed files with 6,856 additions and 15,281 deletions.
11 changes: 11 additions & 0 deletions packages/ui/App.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<template>
<div>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</div>
</template>

<style lang="scss">
@use "~/assets/styles/main.scss";
</style>
5 changes: 0 additions & 5 deletions packages/ui/apollo.config.js

This file was deleted.

7 changes: 0 additions & 7 deletions packages/ui/assets/README.md

This file was deleted.

12 changes: 6 additions & 6 deletions packages/ui/assets/styles/main.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
@font-face{
font-family:"Avenir Next Variable W05 Itali";
src: url("~assets/fonts/5616356/cf7047b5-ced0-4cb1-b66e-688e29567e96.woff2") format("woff2"), url("~assets/fonts/5616356/8a2ab6e1-4ba1-439f-a73b-29918942af3b.woff") format("woff");
src: url("/fonts/5616356/cf7047b5-ced0-4cb1-b66e-688e29567e96.woff2") format("woff2"), url("/fonts/5616356/8a2ab6e1-4ba1-439f-a73b-29918942af3b.woff") format("woff");
font-display: swap;
}

@font-face{
font-family:"Avenir Next Variable W05835004";
src: url("~assets/fonts/5835004/42801c92-f679-41d6-ab36-6c7ca7c7fa6c.woff2") format("woff2"), url("~assets/fonts/5835004/20522a37-c9e1-4059-b349-66eee8da006b.woff") format("woff");
src: url("/fonts/5835004/42801c92-f679-41d6-ab36-6c7ca7c7fa6c.woff2") format("woff2"), url("/fonts/5835004/20522a37-c9e1-4059-b349-66eee8da006b.woff") format("woff");
font-display: swap;
}

Expand All @@ -15,7 +15,7 @@
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
src: url('~assets/fonts/roboto-mono/roboto-mono-v22-latin-regular.woff2') format('woff2'), url('~assets/fonts/roboto-mono/roboto-mono-v22-latin-regular.woff') format('woff');
src: url('/fonts/roboto-mono/roboto-mono-v22-latin-regular.woff2') format('woff2'), url('/fonts/roboto-mono/roboto-mono-v22-latin-regular.woff') format('woff');
font-display: swap;
}

Expand All @@ -24,7 +24,7 @@
font-family: 'Almarai';
font-style: normal;
font-weight: 300;
src: url('~assets/fonts/almarai/almarai-v12-arabic-300.woff2') format('woff2'), url('~assets/fonts/almarai/almarai-v12-arabic-300.woff') format('woff');
src: url('/fonts/almarai/almarai-v12-arabic-300.woff2') format('woff2'), url('/fonts/almarai/almarai-v12-arabic-300.woff') format('woff');
font-display: swap;
}

Expand All @@ -33,7 +33,7 @@
font-family: 'Almarai';
font-style: normal;
font-weight: 400;
src: url('~assets/fonts/almarai/almarai-v12-arabic-regular.woff2') format('woff2'), url('~assets/fonts/almarai/almarai-v12-arabic-regular.woff') format('woff');
src: url('/fonts/almarai/almarai-v12-arabic-regular.woff2') format('woff2'), url('/fonts/almarai/almarai-v12-arabic-regular.woff') format('woff');
font-display: swap;
}

Expand All @@ -42,7 +42,7 @@
font-family: 'Almarai';
font-style: normal;
font-weight: 700;
src: url('~assets/fonts/almarai/almarai-v12-arabic-700.woff2') format('woff2'), url('~assets/fonts/almarai/almarai-v12-arabic-700.woff') format('woff');
src: url('/fonts/almarai/almarai-v12-arabic-700.woff2') format('woff2'), url('/fonts/almarai/almarai-v12-arabic-700.woff') format('woff');
font-display: swap;
}

Expand Down
6 changes: 3 additions & 3 deletions packages/ui/components/DataFeedDescription.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<i18n :path="description.i18nPath" tag="p" class="feed-description">
<template v-for="field in description.fields" #[field]>
<i18n-t :keypath="description.i18nPath" tag="p" class="feed-description">
<template v-for="field in description.fields" #[field] :key="field.i18nPath">
<span :key="field.i18nPath" class="bold">{{ fieldToProp[field] }}</span>
</template>
</i18n>
</i18n-t>
</template>

<script>
Expand Down
Loading

0 comments on commit 30ea138

Please sign in to comment.