From 483b89ed7726302ca72d8c4b121ee450754ee5b7 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Mon, 3 Feb 2020 00:23:05 +0100
Subject: [PATCH] Fix: Star background now extends fully to the left.

---
 src/styles/stars.scss | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/styles/stars.scss b/src/styles/stars.scss
index 8827b69..5fc9798 100644
--- a/src/styles/stars.scss
+++ b/src/styles/stars.scss
@@ -22,6 +22,8 @@ html {
 }
 
 .stars1 {
+    position: absolute;
+    left: 0;
     width: 1px;
     height: 1px;
     background: transparent;
@@ -41,6 +43,8 @@ html {
 }
 
 .stars2 {
+    position: absolute;
+    left: 0;
     width: 2px;
     height: 2px;
     background: transparent;
@@ -60,6 +64,8 @@ html {
 }
 
 .stars3 {
+    position: absolute;
+    left: 0;
     width: 3px;
     height: 3px;
     background: transparent;
-- 
GitLab