Skip to content

Commit 7eb2a03

Browse files
authored
Merge pull request #64 from shopinvader/services-refactor-bugfix
OIDC Authentication
2 parents 55639a7 + b986f3d commit 7eb2a03

File tree

123 files changed

+4462
-2926
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+4462
-2926
lines changed

app.config.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export default defineAppConfig({
44
nuxtIcon: {
55
aliases: {
66
addresses:"ph:address-book-light",
7+
profile:"ph:person-light",
78
sales:"ph:list-dashes",
89
check: "ph:check",
910
left: "ph:arrow-left",
@@ -28,6 +29,7 @@ export default defineAppConfig({
2829
cart: "clarity:shopping-bag-line",
2930
shipping: "ph:package",
3031
billing: "ph:receipt",
32+
email:"ph:envelope",
3133
warning: "ph:warning",
3234
attention: "iconamoon:attention-circle-thin",
3335
down: "ph:caret-down-light",
@@ -39,6 +41,7 @@ export default defineAppConfig({
3941
location: "ic:sharp-location-on",
4042
menu: "solar:hamburger-menu-outline",
4143
download: "material-symbols:download-for-offline-outline",
44+
carrier: "solar:box-line-duotone",
4245
},
4346
},
4447
animations: {
@@ -48,7 +51,7 @@ export default defineAppConfig({
4851
opacity: 0,
4952
y: 100,
5053
},
51-
visibleOnce: {
54+
enter: {
5255
opacity: 1,
5356
y: 0,
5457
transition: {
@@ -65,7 +68,7 @@ export default defineAppConfig({
6568
initial:{
6669
opacity: 0,
6770
},
68-
visibleOnce: {
71+
enter: {
6972
opacity: 1,
7073
transition: {
7174
duration: 300,
@@ -82,7 +85,7 @@ export default defineAppConfig({
8285
opacity: 0,
8386
y: -100,
8487
},
85-
visibleOnce: {
88+
enter: {
8689
y: 0,
8790
opacity: 1,
8891
transition: {

app.vue

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
<template>
2-
<RobotMeta />
32
<div>
4-
<NuxtLayout>
5-
<NuxtPage />
6-
</NuxtLayout>
3+
<RobotMeta />
4+
<div>
5+
<NuxtLayout>
6+
<div>
7+
<NuxtPage />
8+
</div>
9+
</NuxtLayout>
10+
</div>
711
</div>
812
</template>
913
<script setup lang="ts">

assets/css/main.scss

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,41 @@
11
@tailwind base;
22
@tailwind components;
33
@tailwind utilities;
4+
@font-face {
5+
font-family: 'Montserrat';
6+
font-style: normal;
7+
font-weight: 300;
8+
font-display: swap;
9+
src: url('/fonts/Montserrat-Light.woff2') format('woff2');
10+
}
11+
@font-face {
12+
font-family: 'Montserrat';
13+
font-style: normal;
14+
font-weight: 400;
15+
font-display: swap;
16+
src: url('/fonts/Montserrat-Regular.woff2') format('woff2');
17+
}
18+
@font-face {
19+
font-family: 'Montserrat';
20+
font-style: normal;
21+
font-weight: 600;
22+
font-display: swap;
23+
src: url('/fonts/Montserrat-SemiBold.woff2') format('woff2');
24+
}
25+
@font-face {
26+
font-family: 'Montserrat';
27+
font-style: normal;
28+
font-weight: 700;
29+
font-display: swap;
30+
src: url('/fonts/Montserrat-Bold.woff2') format('woff2');
31+
}
32+
433
@layer components {
5-
.heading {
34+
.heading {
635
@apply font-heading uppercase font-bold
736
}
837
}
38+
939
h2,
1040
.h2 {
1141

@@ -17,9 +47,6 @@ h1,
1747
@apply font-heading leading-tight text-4xl mt-0 mb-5 text-primary;
1848
}
1949

20-
21-
22-
2350
.backdrop {
2451
@apply backdrop-blur-sm fixed top-0 left-0 z-20 h-screen w-screen bg-gray-900/20;
2552
}

assets/font/JosefinSans-Bold.ttf

-56.3 KB
Binary file not shown.
-56.5 KB
Binary file not shown.

assets/font/Montserrat-Black.ttf

-193 KB
Binary file not shown.
-198 KB
Binary file not shown.

assets/font/Montserrat-Bold.ttf

-193 KB
Binary file not shown.
-198 KB
Binary file not shown.
-194 KB
Binary file not shown.

0 commit comments

Comments
 (0)