Skip to content

Commit

Permalink
Update design
Browse files Browse the repository at this point in the history
  • Loading branch information
afgprogrammer committed Aug 4, 2023
1 parent 9e6910f commit 369f96b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,23 @@
</script>
<!-- This script adds the flutter initialization JS code -->
<script src="flutter.js" defer></script>
<style>
.loader {
border: 5px solid #f3f3f3;
border-top: 5px solid #3498db;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 2s linear infinite;
/* margin: auto; */
margin-top: 20px;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body style="width: 100%; height: 100%;">
<div id="loading" style="margin: auto;height: 100vh; display: flex;flex-direction: column;justify-content: center;align-items: center;">
Expand Down

0 comments on commit 369f96b

Please sign in to comment.