Skip to content

Commit

Permalink
fix: registration redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
sadraiiali committed Jan 16, 2024
1 parent 9c4bc4d commit b695a55
Show file tree
Hide file tree
Showing 5 changed files with 305 additions and 117 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@
{
title: "کانال تلگرام اطلاع رسانی",
icon: "akar-icons:telegram-fill",
url: "https://t.me/RCSS_IR",
url: "https://t.me/SoccerSim2D",
},
{
title: "گروه تلگرام",
icon: "akar-icons:telegram-fill",
url: "https://t.me/RCSS_IR",
url: "https://t.me/SoccerSim2DGroup",
},
{
title: "کانال یوتیوب",
icon: "akar-icons:youtube-fill",
url: "https://www.youtube.com/RCSS.IR",
url: "https://www.youtube.com/@RCSS2D",
},
];
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
url: "/outline",
},
{
name: 'درباره‌ی ما',
url: '/about'
name: "درباره‌ی ما",
url: "/about",
},
];
Expand Down
21 changes: 21 additions & 0 deletions src/lib/components/Loading.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<div class="loader"></div>

<style>
.loader {
border: 1em solid #f3f3f3; /* Light grey */
border-top: 1em solid currentColor; /* Blue */
border-radius: 50%;
width: 7em;
height: 7em;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
Loading

0 comments on commit b695a55

Please sign in to comment.