diff --git a/bizmatch/src/app/app.component.html b/bizmatch/src/app/app.component.html index 1f8d4d9..6b0901e 100644 --- a/bizmatch/src/app/app.component.html +++ b/bizmatch/src/app/app.component.html @@ -3,7 +3,7 @@ @if (actualRoute !=='home' && actualRoute !=='login' && actualRoute!=='emailVerification' && actualRoute!=='email-authorized'){
} -
+
diff --git a/bizmatch/src/app/components/drag-drop-mixed/drag-drop-mixed.component.html b/bizmatch/src/app/components/drag-drop-mixed/drag-drop-mixed.component.html index 79e5968..0544dc3 100644 --- a/bizmatch/src/app/components/drag-drop-mixed/drag-drop-mixed.component.html +++ b/bizmatch/src/app/components/drag-drop-mixed/drag-drop-mixed.component.html @@ -13,8 +13,8 @@ -->
- -
+ +
diff --git a/bizmatch/src/app/components/email-authorized/email-authorized.component.html b/bizmatch/src/app/components/email-authorized/email-authorized.component.html index e4298c3..5e5137d 100644 --- a/bizmatch/src/app/components/email-authorized/email-authorized.component.html +++ b/bizmatch/src/app/components/email-authorized/email-authorized.component.html @@ -1,5 +1,5 @@
-
+
diff --git a/bizmatch/src/app/components/email-verification/email-verification.component.html b/bizmatch/src/app/components/email-verification/email-verification.component.html index 9187aa7..03cf40e 100644 --- a/bizmatch/src/app/components/email-verification/email-verification.component.html +++ b/bizmatch/src/app/components/email-verification/email-verification.component.html @@ -1,5 +1,5 @@
-
+

Email Verification

A verification email has been sent to your email address. Please check your inbox and click the link to verify your account.

Once verified, please return to the application.

diff --git a/bizmatch/src/app/components/header/header.component.html b/bizmatch/src/app/components/header/header.component.html index 5330fe9..551a8fa 100644 --- a/bizmatch/src/app/components/header/header.component.html +++ b/bizmatch/src/app/components/header/header.component.html @@ -28,7 +28,7 @@ -
+
    @for(item of sortByOptions; track item){
  • {{ item.selectName ? item.selectName : item.name }}
  • diff --git a/bizmatch/src/app/components/login-register/login-register.component.html b/bizmatch/src/app/components/login-register/login-register.component.html index 123ff74..39df5fc 100644 --- a/bizmatch/src/app/components/login-register/login-register.component.html +++ b/bizmatch/src/app/components/login-register/login-register.component.html @@ -1,5 +1,5 @@ -
    -
    +
    +

    {{ isLoginMode ? 'Login' : 'Sign Up' }}

    @@ -83,12 +83,6 @@ -
    diff --git a/bizmatch/src/app/pages/admin/user-list/user-list.component.html b/bizmatch/src/app/pages/admin/user-list/user-list.component.html index 2eba7b8..064372d 100644 --- a/bizmatch/src/app/pages/admin/user-list/user-list.component.html +++ b/bizmatch/src/app/pages/admin/user-list/user-list.component.html @@ -32,7 +32,7 @@
    -
    +
    @@ -107,7 +107,7 @@ -
    +
    +
    @@ -44,7 +44,7 @@
    -
    +

    {{ listing.title }}

    Category: {{ listing.listingsCategory === 'commercialProperty' ? 'Commercial Property' : 'Business' }}

    Located in: {{ listing.location.name ? listing.location.name : listing.location.county }}, {{ listing.location.state }}

    diff --git a/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html b/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html index a37a861..9063400 100644 --- a/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html +++ b/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html @@ -1,10 +1,10 @@
    -
    +

    My Listings

    Title
    +
    @@ -57,7 +57,7 @@
    -
    +

    {{ listing.title }}

    Category: {{ listing.listingsCategory === 'commercialProperty' ? 'Commercial Property' : 'Business' }}

    Located in: {{ listing.location.name ? listing.location.name : listing.location.county }} - {{ listing.location.state }}

    diff --git a/bizmatch/tailwind.config.js b/bizmatch/tailwind.config.js index d545744..de679ee 100644 --- a/bizmatch/tailwind.config.js +++ b/bizmatch/tailwind.config.js @@ -33,7 +33,14 @@ module.exports = { '3xl': '1.875rem', '4xl': '2.25rem', '5xl': '3rem', - }, + }, + dropShadow: { + 'custom-bg': '0 15px 20px rgba(0, 0, 0, 0.3)', // Wähle einen aussagekräftigen Namen + 'inner-faint': '0 3px 6px rgba(0, 0, 0, 0.1)', + 'custom-md': '0 10px 15px rgba(0, 0, 0, 0.25)', // Dein mittlerer Schatten + 'custom-lg': '0 15px 20px rgba(0, 0, 0, 0.3)' // Dein großer Schatten + // ... andere benutzerdefinierte Schatten, falls vorhanden + } }, }, plugins: [
    Title