Icon update
19
config.json
@ -32,12 +32,18 @@
|
||||
"manifest": {
|
||||
"short_name": "notify.moe",
|
||||
"gcm_sender_id": "941298467524",
|
||||
"theme_color": "#f8a582",
|
||||
"theme_color": "#f0c7bb",
|
||||
"background_color": "#ffffff",
|
||||
"icons": [
|
||||
{
|
||||
"src": "images/brand/64.png",
|
||||
"sizes": "64x64"
|
||||
"sizes": "64x64",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/brand/128.png",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/brand/144.png",
|
||||
@ -45,12 +51,9 @@
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "images/brand/300.png",
|
||||
"sizes": "300x300"
|
||||
},
|
||||
{
|
||||
"src": "images/brand/600.png",
|
||||
"sizes": "600x600"
|
||||
"src": "images/brand/220.png",
|
||||
"sizes": "220x220",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
BIN
images/brand/128.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
images/brand/128.webp
Normal file
After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 12 KiB |
BIN
images/brand/220.png
Normal file
After Width: | Height: | Size: 69 KiB |
BIN
images/brand/220.webp
Normal file
After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 125 KiB |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 447 KiB |
Before Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.5 KiB |
@ -59,7 +59,7 @@ func testPackage(pkg string) {
|
||||
Title: pkg,
|
||||
Message: "Test failed",
|
||||
Link: "https://" + pkg,
|
||||
Icon: "https://notify.moe/images/brand/300.png",
|
||||
Icon: "https://notify.moe/images/brand/220.png",
|
||||
})
|
||||
return
|
||||
}
|
||||
|
@ -32,7 +32,8 @@ sidebar-spacing-y = 0.7rem
|
||||
pointer-events auto
|
||||
box-shadow none
|
||||
border-right ui-border
|
||||
background rgba(0, 0, 0, 0.03)
|
||||
// background rgba(0, 0, 0, 0.03)
|
||||
background rgba(0, 0, 0, 0.2)
|
||||
|
||||
.sidebar-visible
|
||||
transform translateX(0) !important
|
||||
|
@ -16,7 +16,7 @@ func Get(ctx *aero.Context) string {
|
||||
"og:description": description,
|
||||
"og:type": "website",
|
||||
"og:url": "https://" + ctx.App.Config.Domain,
|
||||
"og:image": "https://" + ctx.App.Config.Domain + "/images/brand/600.png",
|
||||
"og:image": "https://" + ctx.App.Config.Domain + "/images/brand/220.png",
|
||||
},
|
||||
Meta: map[string]string{
|
||||
"description": description,
|
||||
|
@ -19,7 +19,7 @@ func Test(ctx *aero.Context) string {
|
||||
notification := &arn.Notification{
|
||||
Title: "Anime Notifier",
|
||||
Message: "Yay, it works!",
|
||||
Icon: "https://" + ctx.App.Config.Domain + "/images/brand/300.png",
|
||||
Icon: "https://" + ctx.App.Config.Domain + "/images/brand/220.png",
|
||||
}
|
||||
|
||||
user.SendNotification(notification)
|
||||
|
@ -49,7 +49,7 @@ func CreatePayment(ctx *aero.Context) string {
|
||||
// Name: "Anime Notifier",
|
||||
// Presentation: paypalsdk.Presentation{
|
||||
// BrandName: "Anime Notifier",
|
||||
// LogoImage: "https://notify.moe/brand/300",
|
||||
// LogoImage: "https://notify.moe/brand/220",
|
||||
// LocaleCode: "US",
|
||||
// },
|
||||
|
||||
|
@ -9,7 +9,7 @@ text-color = hsl(0, 0%, 90%)
|
||||
bg-color = hsl(0, 0%, 24%)
|
||||
link-color = hsl(hue, saturation, 66%)
|
||||
link-hover-color = hsl(hue, saturation, 76%)
|
||||
ui-background = hsla(0, 0%, 8%, 0.5)
|
||||
ui-background = hsla(0, 0%, 8%, 0.3)
|
||||
|
||||
theme-white = bg-color
|
||||
theme-black = text-color
|
||||
|
@ -21,6 +21,12 @@
|
||||
|
||||
:first-child
|
||||
border-left ui-border
|
||||
border-top-left-radius ui-element-border-radius
|
||||
border-bottom-left-radius ui-element-border-radius
|
||||
|
||||
:last-child
|
||||
border-top-right-radius ui-element-border-radius
|
||||
border-bottom-right-radius ui-element-border-radius
|
||||
|
||||
// color text-color !important
|
||||
// :hover
|
||||
|