gisaf-frontend/src/index.html

33 lines
711 B
HTML
Raw Normal View History

2024-02-17 12:35:03 +05:30
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Gisaf</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body class="mat-app-background">
<app-root>
<style>
body {
margin: 0;
}
.loadingApp {
position: fixed;
width: 100%;
height: 100%;
background-color: #D0D0D0;
}
.loadingApp img {
margin: 20% 40% 30% 40%;
width: 10%;
height: 10%;
}
</style>
<div class="loadingApp">
<img src="/assets/icons/spin.gif" />
</div>
</app-root>
</body>
</html>