chore: move app icons into frontend assets

This commit is contained in:
mirivlad 2026-06-05 12:25:47 +08:00
parent 22b05f57b4
commit 56ef211418
15 changed files with 17 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 765 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,10 @@
<html lang="ru"> <html lang="ru">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/wails.png" /> <link rel="icon" type="image/png" sizes="16x16" href="/assets/app-icons/icon_16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/app-icons/icon_32x32.png" />
<link rel="icon" type="image/png" sizes="64x64" href="/assets/app-icons/icon_64x64.png" />
<link rel="icon" type="image/png" sizes="128x128" href="/assets/app-icons/icon_128x128.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Верстак</title> <title>Верстак</title>
<style> <style>
@ -16,7 +19,7 @@
background: #13131f; background: #13131f;
} }
</style> </style>
<script type="module" crossorigin src="/assets/main-Btt0sHHh.js"></script> <script type="module" crossorigin src="/assets/main-DFvUQBl-.js"></script>
<link rel="stylesheet" crossorigin href="/assets/main-DvvUc9rb.css"> <link rel="stylesheet" crossorigin href="/assets/main-DvvUc9rb.css">
</head> </head>
<body> <body>

View File

@ -2,7 +2,10 @@
<html lang="ru"> <html lang="ru">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/wails.png" /> <link rel="icon" type="image/png" sizes="16x16" href="/assets/app-icons/icon_16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/app-icons/icon_32x32.png" />
<link rel="icon" type="image/png" sizes="64x64" href="/assets/app-icons/icon_64x64.png" />
<link rel="icon" type="image/png" sizes="128x128" href="/assets/app-icons/icon_128x128.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Верстак</title> <title>Верстак</title>
<style> <style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 765 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -89,7 +89,7 @@
<div class="first-run-screen"> <div class="first-run-screen">
<div class="first-run-card"> <div class="first-run-card">
<div class="first-run-logo">&#9874;</div> <img class="first-run-logo" src="/assets/app-icons/icon_64x64.png" width="64" height="64" alt="" />
<h1>{t('firstrun.title')}</h1> <h1>{t('firstrun.title')}</h1>
<p class="first-run-desc">{t('firstrun.desc')}</p> <p class="first-run-desc">{t('firstrun.desc')}</p>
@ -146,8 +146,10 @@
text-align: center; text-align: center;
} }
.first-run-logo { .first-run-logo {
font-size: 3rem; display: block;
margin-bottom: 0.5rem; width: 64px;
height: 64px;
margin: 0 auto 0.5rem auto;
} }
.first-run-card h1 { .first-run-card h1 {
margin: 0 0 0.75rem 0; margin: 0 0 0.75rem 0;