
diff --git a/developer/dashboard.php b/developer/dashboard.php
index 0177715..b3ae495 100644
--- a/developer/dashboard.php
+++ b/developer/dashboard.php
@@ -61,6 +61,19 @@ if (!($conn instanceof mysqli)) {
margin: 0;
padding: 20px;
}
+ .page-transition {
+ animation: fadeIn 0.5s ease-in-out;
+ }
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
.dashboard-container {
max-width: 1200px;
margin: 0 auto;
@@ -131,7 +144,7 @@ if (!($conn instanceof mysqli)) {
}
-
+
+
\ No newline at end of file
diff --git a/developer/profile.php b/developer/profile.php
index b3c4f7e..659dfd0 100644
--- a/developer/profile.php
+++ b/developer/profile.php
@@ -104,6 +104,19 @@ if (!($conn instanceof mysqli)) {
margin: 0;
padding: 20px;
}
+ .page-transition {
+ animation: fadeIn 0.5s ease-in-out;
+ }
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
.profile-container {
max-width: 800px;
margin: 0 auto;
@@ -126,7 +139,7 @@ if (!($conn instanceof mysqli)) {
}
-
+