chore: move app icons into frontend assets
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 765 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
|
@ -2,7 +2,10 @@
|
|||
<html lang="ru">
|
||||
<head>
|
||||
<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" />
|
||||
<title>Верстак</title>
|
||||
<style>
|
||||
|
|
@ -16,7 +19,7 @@
|
|||
background: #13131f;
|
||||
}
|
||||
</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">
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,10 @@
|
|||
<html lang="ru">
|
||||
<head>
|
||||
<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" />
|
||||
<title>Верстак</title>
|
||||
<style>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 765 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
|
|
@ -89,7 +89,7 @@
|
|||
|
||||
<div class="first-run-screen">
|
||||
<div class="first-run-card">
|
||||
<div class="first-run-logo">⚒</div>
|
||||
<img class="first-run-logo" src="/assets/app-icons/icon_64x64.png" width="64" height="64" alt="" />
|
||||
<h1>{t('firstrun.title')}</h1>
|
||||
<p class="first-run-desc">{t('firstrun.desc')}</p>
|
||||
|
||||
|
|
@ -146,8 +146,10 @@
|
|||
text-align: center;
|
||||
}
|
||||
.first-run-logo {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
display: block;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: 0 auto 0.5rem auto;
|
||||
}
|
||||
.first-run-card h1 {
|
||||
margin: 0 0 0.75rem 0;
|
||||
|
|
|
|||