-      
-        The risk of loss in trading can be substantial. It is not advisable
-          to invest money you may need in the short term.
-      
+  
-    
-      
Ghostfolio
+  
+    
+      The risk of loss in trading can be substantial. It is not advisable to
+        invest money you may need in the short term.
     
   
-
+
+
diff --git a/apps/client/src/app/components/footer/footer.component.scss b/apps/client/src/app/components/footer/footer.component.scss
index 7ab188f4c..3bff80ccd 100644
--- a/apps/client/src/app/components/footer/footer.component.scss
+++ b/apps/client/src/app/components/footer/footer.component.scss
@@ -1,6 +1,6 @@
 :host {
-  display: block;
   background-color: rgba(var(--palette-foreground-text), 0.05);
+  display: block;
   font-size: 90%;
 
   .logotype {
diff --git a/apps/client/src/app/components/footer/footer.component.spec.ts b/apps/client/src/app/components/footer/footer.component.spec.ts
deleted file mode 100644
index 17f675ccd..000000000
--- a/apps/client/src/app/components/footer/footer.component.spec.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { GfFooterComponent } from './footer.component';
-
-// TODO: Fix Jest configuration for Ionic components
-describe.skip('GfFooterComponent', () => {
-  let component: GfFooterComponent;
-
-  beforeEach(() => {
-    component = new GfFooterComponent();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-
-  it('should have current year property', () => {
-    expect(component.currentYear).toBe(new Date().getFullYear());
-  });
-
-  it('should have router links defined', () => {
-    expect(component.routerLinkAbout).toBeDefined();
-    expect(component.routerLinkFeatures).toBeDefined();
-    expect(component.routerLinkResources).toBeDefined();
-  });
-
-  it('should initialize permission properties', () => {
-    component.ngOnChanges();
-
-    expect(component.hasPermissionForStatistics).toBeDefined();
-    expect(component.hasPermissionForSubscription).toBeDefined();
-    expect(component.hasPermissionToAccessFearAndGreedIndex).toBeDefined();
-  });
-});