diff --git a/background.js b/background.js index d184579..82bb3c4 100644 --- a/background.js +++ b/background.js @@ -16,7 +16,7 @@ chrome.action.onClicked.addListener((tab) => { chrome.scripting.executeScript({ target: { tabId: tab.id }, files: ['popup.js'] - }); + }, () => chrome.runtime.lastError); }); @@ -24,5 +24,5 @@ chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => { chrome.scripting.executeScript({ target: { tabId: tabId }, files: ['onload.js'] - }); + }, () => chrome.runtime.lastError); }); \ No newline at end of file diff --git a/popup.html b/popup.html index 3e9e908..d6b337e 100644 --- a/popup.html +++ b/popup.html @@ -18,19 +18,20 @@ -
-
-
-
-

Gitccentify

-
+
+

+ Profile Picture +
· Gitccentify · +
v1.0.0

+

+
-
-
- + +
+ - -
+
+ diff --git a/styles/styles.css b/styles/styles.css index a0030a2..76ccdbf 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -10,10 +10,11 @@ h1 { } #title { - height: 64px; - background-color: bisque; - width: 400px; + height: 80px; + background-color: rgb(255, 255, 255); + width: 300px; position: relative; + padding: 0 0 20px 0; } .logo { @@ -35,4 +36,10 @@ h1 { margin: 10px; border: none; border-radius: 2px; +} + +.vertcenter { + display: flex; + justify-content: center; + align-items: center; } \ No newline at end of file