diff --git a/AKPlanning/settings.py b/AKPlanning/settings.py
index 4f7f6f95294bbbebc2e102569ade7d6ea7f68f6e..8b8ae3231c02ba37046c3d1d28d86f3830daccfd 100644
--- a/AKPlanning/settings.py
+++ b/AKPlanning/settings.py
@@ -121,12 +121,15 @@ USE_TZ = True
 
 STATIC_URL = '/static/'
 STATIC_ROOT = os.path.join(BASE_DIR, 'static')
+STATICFILES_DIRS = (
+    'static_common',
+)
 
 # Settings for Bootstrap
 BOOTSTRAP4 = {
     # Use custom CSS
     "css_url": {
-        "href": STATIC_URL + "AKDashboard/css/bootstrap.css",
+        "href": STATIC_URL + "common/css/bootstrap.css",
     },
 }
 
diff --git a/AKDashboard/static/AKDashboard/css/bootstrap.css b/static_common/common/css/bootstrap.css
similarity index 100%
rename from AKDashboard/static/AKDashboard/css/bootstrap.css
rename to static_common/common/css/bootstrap.css