refactor: remove unused navbar component import

This commit is contained in:
Jan-Marlon Leibl 2025-02-13 13:02:54 +01:00
parent 9fe473302c
commit 04626e92d1
No known key found for this signature in database
GPG key ID: E7B6F77BF5EDB6F7
3 changed files with 31 additions and 36 deletions

View file

@ -18,17 +18,13 @@
--color-accent-purple: #8b5cf6;
}
* {
@apply !font-sans;
}
body {
@apply bg-deep-blue text-text-primary h-full;
@apply !bg-deep-blue !text-text-primary h-full;
}
button,
a {
@apply cursor-pointer active:scale-95 transition-all duration-200;
@apply cursor-pointer active:scale-95 !text-text-primary transition-all duration-200;
}
.card {
@ -36,7 +32,7 @@ a {
}
.button-base {
@apply bg-emerald hover:bg-emerald-dark text-text-primary font-bold transition-all duration-300 active:scale-95 rounded;
@apply bg-emerald hover:bg-emerald-dark !text-text-primary transition-all duration-300 active:scale-95 rounded;
}
.game-card-content {
@ -44,7 +40,7 @@ a {
}
.nav-button {
@apply hidden lg:block absolute top-1/2 -translate-y-1/2 bg-deep-blue-contrast hover:bg-deep-blue-contrast/90 text-text-primary p-3 rounded-full opacity-0 group-hover:opacity-100 transition-all duration-300 shadow-lg hover:scale-110;
@apply hidden lg:block absolute top-1/2 -translate-y-1/2 bg-deep-blue-contrast hover:bg-deep-blue-contrast/90 !text-text-primary p-3 rounded-full opacity-0 group-hover:opacity-100 transition-all duration-300 shadow-lg hover:scale-110;
}
.slider-container {
@ -56,47 +52,47 @@ a {
}
.welcome-bonus {
@apply text-4xl sm:text-5xl lg:text-7xl font-extrabold text-emerald-light mb-3 sm:mb-4;
@apply !text-4xl sm:!text-5xl lg:!text-7xl !font-extrabold !text-emerald-light mb-3 sm:mb-4;
}
.bonus-description {
@apply text-text-secondary text-base sm:text-lg mb-6 sm:mb-8;
@apply !text-text-secondary !text-base sm:!text-lg mb-6 sm:mb-8;
}
.section-heading {
@apply font-bold text-text-primary;
@apply !font-bold !text-text-primary;
}
.game-heading {
@apply font-bold text-text-primary mb-2;
@apply !font-bold !text-text-primary !text-sm mb-2;
}
.game-text {
@apply text-text-secondary text-sm mb-4;
@apply !text-text-secondary !text-sm mb-4;
}
.stat-container {
@apply bg-deep-blue-contrast rounded-lg shadow-lg p-4 sm:p-6 text-center;
@apply bg-deep-blue-contrast rounded-lg shadow-lg p-4 sm:p-6 !text-center;
}
.stat-number {
@apply text-xl sm:text-2xl font-bold text-emerald;
@apply !text-xl sm:!text-2xl !font-bold !text-emerald;
}
.stat-text {
@apply text-text-secondary text-sm;
@apply !text-text-secondary !text-sm;
}
.nav-brand {
@apply flex items-center text-text-primary text-xl font-semibold;
@apply flex items-center !text-text-primary !text-xl !font-semibold;
}
.nav-link {
@apply px-3 py-2 rounded-md text-sm text-text-secondary hover:text-text-primary hover:bg-deep-blue-contrast transition-all duration-200;
@apply px-3 py-2 rounded-md !font-normal !text-sm !text-text-secondary hover:!text-text-primary hover:bg-deep-blue-contrast transition-all duration-200;
}
.nav-toggle {
@apply text-text-secondary hover:text-text-primary transition-colors duration-200;
@apply !text-text-secondary hover:!text-text-primary transition-colors duration-200;
}
.nav-mobile-menu {
@ -104,7 +100,7 @@ a {
}
.nav-mobile-link {
@apply block px-3 py-2 rounded-md text-sm text-text-secondary hover:text-text-primary hover:bg-deep-blue-light transition-all duration-200;
@apply block px-3 py-2 rounded-md !text-sm !text-text-secondary hover:!text-text-primary hover:bg-deep-blue-light transition-all duration-200;
}
.footer-section {
@ -112,11 +108,11 @@ a {
}
.footer-heading {
@apply text-text-primary text-sm font-semibold mb-4;
@apply !text-text-primary !text-sm !font-semibold mb-4;
}
.footer-link {
@apply text-text-secondary hover:text-text-primary text-sm transition-all duration-200;
@apply !text-text-secondary hover:!text-text-primary !text-sm transition-all duration-200;
}
.footer-payment-method {
@ -124,24 +120,24 @@ a {
}
.footer-payment-icon {
@apply text-text-secondary text-lg;
@apply !text-text-secondary !text-lg;
}
.footer-payment-text {
@apply text-text-secondary text-xs whitespace-nowrap;
@apply !text-text-secondary !text-xs !whitespace-nowrap;
}
.footer-copyright {
@apply text-text-secondary text-sm;
@apply !text-text-secondary !text-sm;
}
.footer-disclaimer {
@apply text-xs;
@apply !text-xs;
}
.mat-mdc-dialog-container {
--mdc-dialog-container-color: var(--color-deep-blue-light) !important;
--mdc-dialog-subhead-color: var(--color-text-primary) !important;
--mdc-dialog-supporting-text-color: var(--color-text-secondary) !important;
--mdc-dialog-container-shape: 6px !important;
--mdc-dialog-container-color: var(--color-deep-blue-light) important;
--mdc-dialog-subhead-color: var(--color-text-primary) important;
--mdc-dialog-supporting-text-color: var(--color-text-secondary) important;
--mdc-dialog-container-shape: 6px important;
}