diff --git a/src/App.module.scss b/src/App.module.scss
index e69de29..4dec71d 100644
--- a/src/App.module.scss
+++ b/src/App.module.scss
@@ -0,0 +1,28 @@
+
+ .loading {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ height: 100vh;
+ font-size: 1.5rem;
+ }
+
+ .spinner {
+ border: 4px solid rgba(0, 0, 0, 0.1);
+ width: 6rem;
+ height: 6rem;
+ border-radius: 50%;
+ border-left-color: #09f;
+ animation: spin 1s ease infinite;
+ }
+
+ @keyframes spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+ }
+
\ No newline at end of file
diff --git a/src/components/navbar/Navbar.jsx b/src/components/navbar/Navbar.jsx
index 6f5190b..b36dd71 100644
--- a/src/components/navbar/Navbar.jsx
+++ b/src/components/navbar/Navbar.jsx
@@ -13,7 +13,7 @@ const Navbar = ({ user }) => {
{user.displayName}
-
+
diff --git a/src/components/navbar/Navbar.module.scss b/src/components/navbar/Navbar.module.scss
index 0f910cb..b98d5c4 100644
--- a/src/components/navbar/Navbar.module.scss
+++ b/src/components/navbar/Navbar.module.scss
@@ -18,16 +18,17 @@
}
.profilePic {
- width: 40px;
- height: 40px;
+ width: 3rem;
+ height: 3rem;
border-radius: 50%;
- margin-right: 10px;
+ margin-right: 1rem;
}
.userDetails {
display: flex;
flex-direction: column;
align-items: flex-start;
+ margin-right: 4rem;
}
.userName {