seems to be the last RC - this app is done - so am I
BIN
steam-gift-manager/static/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
steam-gift-manager/static/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
steam-gift-manager/static/forgejo.webp
Normal file
After Width: | Height: | Size: 740 B |
BIN
steam-gift-manager/static/gog_logo.webp
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
steam-gift-manager/static/logo.webp
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
steam-gift-manager/static/logo_small.webp
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
steam-gift-manager/static/logo_small_maskable.webp
Normal file
After Width: | Height: | Size: 2.5 KiB |
|
@ -13,22 +13,25 @@
|
|||
},
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/logo_small.webp",
|
||||
"src": "/static/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/webp",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/static/logo_small_maskable.webp",
|
||||
"src": "/static/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/webp",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "/static/logo.webp",
|
||||
"src": "/static/web-app-manifest-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/webp",
|
||||
"purpose": "any maskable"
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
]
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#3f3a3a",
|
||||
"display": "standalone"
|
||||
}
|
||||
|
|
|
@ -3,6 +3,8 @@ const ASSETS = [
|
|||
'/',
|
||||
'/static/style.css',
|
||||
'/static/logo.webp',
|
||||
'/static/web-app-manifest-512x512.png',
|
||||
'/static/web-app-manifest-192x192.png',
|
||||
'/static/logo_small.webp',
|
||||
'/static/gog_logo.webp',
|
||||
'/static/forgejo.webp'
|
||||
|
|
|
@ -133,3 +133,38 @@ body {
|
|||
border: 0;
|
||||
}
|
||||
|
||||
.price-value {
|
||||
font-size: 1.2em;
|
||||
font-weight: 400;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media (max-width: 991.98px) {
|
||||
.navbar-nav {
|
||||
flex-direction: column !important;
|
||||
align-items: flex-start !important;
|
||||
}
|
||||
}
|
||||
|
||||
.card-body img,
|
||||
.steam-description img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
margin: 8px auto;
|
||||
}
|
||||
|
||||
td.font-monospace {
|
||||
word-break: break-all;
|
||||
/* or */
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.alert-error { background-color: #f8d7da; border-color: #f5c6cb; color: #721c24; }
|
||||
.alert-success { background-color: #d4edda; border-color: #c3e6cb; color: #155724; }
|
||||
.alert-info { background: #d9edf7; color: #31708f; }
|
||||
|
||||
|
|
BIN
steam-gift-manager/static/web-app-manifest-192x192.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
steam-gift-manager/static/web-app-manifest-512x512.png
Normal file
After Width: | Height: | Size: 128 KiB |