mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
21 lines
490 B
HTML
21 lines
490 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Wallet Web</title>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
body {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #303030;
|
|
color: #ffffff;
|
|
}
|
|
</style>
|
|
<app-shadow></app-shadow>
|
|
</body>
|
|
</html> |