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">
|
<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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
|
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-screen">
|
||||||
<div class="first-run-card">
|
<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>
|
<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;
|
||||||
|
|
|
||||||