1
0
Fork 0
mirror of https://github.com/Findus23/RainbowRoad.git synced 2024-09-16 12:33:51 +02:00

add some minor data changes

This commit is contained in:
Lukas Winkler 2023-05-21 18:03:09 +02:00
parent 20e2dfa5ce
commit ea6841cfb9
Signed by: lukas
GPG key ID: 54DE4D798D244853
6 changed files with 20 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

View file

@ -105,6 +105,11 @@
"type": "news",
"url": "https://www.heute.at/s/regenbogen-zebrastreifen-als-zeichen-der-solidaritaet-100262709",
"date": "2023-03-28"
},
{
"type": "news",
"url": "https://www.spoe-moedling.at/regenbogen-zebrastreifen/",
"date": "2023-05-03"
}
],
"geosource": {

View file

@ -51,8 +51,8 @@
{
"id": 932441635,
"name": "Hallein",
"type": "HalleinPrideFlag",
"comment": "Farben vertauscht",
"type": "prideFlag",
"comment": "",
"sources": [
{
"type": "news",
@ -68,6 +68,11 @@
"type": "news",
"url": "https://salzburg.orf.at/stories/3177392/",
"date": "2022-10-10"
},
{
"type": "news",
"url": "https://www.salzburg24.at/news/salzburg/tennengau/halleiner-regenbogen-zebrastreifen-bekommt-neuen-anstrich-138649279",
"date": "2023-05-12"
}
],
"geosource": {

View file

@ -18,6 +18,7 @@ import a1Icon from "../assets/favicons/a1.net.png"
import orfIcon from "../assets/favicons/orf.png"
import apaIcon from "../assets/favicons/apa.png"
import facebookIcon from "../assets/favicons/facebook.svg"
import heuteIcon from "../assets/favicons/heute.at.png"
export function faviconByHostname(hostname: string): string | undefined {
@ -57,6 +58,8 @@ export function faviconByHostname(hostname: string): string | undefined {
return apaIcon
case "www.facebook.com":
return facebookIcon
case "www.heute.at":
return heuteIcon
}
if (hostname.includes("spoe")) {

View file

@ -25,6 +25,10 @@ html, body {
text-decoration: none;
}
img {
padding: 1px;
}
.name {
font-weight: bold;
text-align: center;

View file

@ -91,7 +91,7 @@
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
"noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */