diff --git a/src/Components/Settings/Settings.css b/src/Components/Settings/Settings.css index 901a3c6a..8c2d42b7 100644 --- a/src/Components/Settings/Settings.css +++ b/src/Components/Settings/Settings.css @@ -152,6 +152,9 @@ button:hover { background-color: #121026; padding-right: 30px; } +.zoomIn { + animation: zoomIn 1s ease forwards; +} @media (max-width: 768px) { .settings-tabs { @@ -169,3 +172,13 @@ button:hover { width: 100%; } } +@keyframes zoomIn{ +0% { + opacity: 0; + transform: scale(0); +} +100% { + opacity: 1; + transform: scale(1); +} +} diff --git a/src/Components/Settings/SettingsPage.js b/src/Components/Settings/SettingsPage.js index 4663875d..1a469cb4 100644 --- a/src/Components/Settings/SettingsPage.js +++ b/src/Components/Settings/SettingsPage.js @@ -10,16 +10,7 @@ const SettingsPage = () => { switch (activeTab) { case "profile": return ( -
-

Profile Settings

-
- - -
+

Profile Settings

@@ -46,7 +37,7 @@ const SettingsPage = () => { ); case "account": return ( -
+

Account Settings

@@ -73,7 +64,7 @@ const SettingsPage = () => { ); case "notifications": return ( -
+

Notification Settings

@@ -92,7 +83,7 @@ const SettingsPage = () => { ); case "privacy": return ( -
+

Privacy Settings

@@ -116,7 +107,7 @@ const SettingsPage = () => { ); case "collaboration": return ( -
+

Collaboration Settings

@@ -144,7 +135,7 @@ const SettingsPage = () => { ); case "application": return ( -
+

Application Settings