/
githubmirror
/
tauri
Обзор
Документация
Войти
/
githubmirror
/
tauri
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
examples/splashscreen/dist/splashscreen.html
26 строк
516 B
Amr Bashir
chore: add `.prettierrc` in repo root (#2145)
04 июл 2021, 01:48
Не верифицирован
04 июл 2021, 01:48
66916b7
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>Splashscreen</title> <style> body { margin: 0; } .splashscreen-image { background-color: #444; background-image: url('icon.png'); background-position: center; background-repeat: no-repeat; background-size: 50%; width: 100vw !important; height: 100vh !important; overflow: hidden; } </style> </head> <body> <div class="splashscreen-image" /> </body> </html>