mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
fix: builds failing and css failing to load in frontend
This commit is contained in:
+2
-2
@@ -3046,10 +3046,10 @@ export async function SendNewsPage() {
|
||||
;(titlediv! as HTMLElement).innerText = "News"
|
||||
AppendLoadingSymbol("newsloading", "#news-container")
|
||||
|
||||
const response = await browser.runtime.sendMessage({
|
||||
const response = (await browser.runtime.sendMessage({
|
||||
type: "sendNews",
|
||||
source: settingsState.newsSource,
|
||||
})
|
||||
})) as any
|
||||
const newscontainer = document.querySelector("#news-container")
|
||||
document.getElementById("newsloading")?.remove()
|
||||
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
@import './components/ColourPicker.css';
|
||||
@import "tailwindcss";
|
||||
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
|
||||
@@ -19,6 +19,6 @@ export default function renderSvelte(
|
||||
style.setAttribute("type", "text/css")
|
||||
style.innerHTML = styles
|
||||
mountPoint.appendChild(style)
|
||||
|
||||
|
||||
return app
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
],
|
||||
"web_accessible_resources": [
|
||||
{
|
||||
"resources": ["*://*/*"],
|
||||
"resources": ["*/*"],
|
||||
"matches": ["*://*/*"]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user