diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml
index 1601e66..a9cc59d 100644
--- a/docker-compose.prod.yml
+++ b/docker-compose.prod.yml
@@ -30,10 +30,10 @@ services:
- POSTGRES_DB=${POSTGRES_DB}
- JWT_ACCESS_SECRET=${JWT_ACCESS_SECRET}
depends_on:
- - redis:
- condition: service_healthy
- - postgres:
- condition: service_healthy
+ redis:
+ condition: service_healthy
+ postgres:
+ condition: service_healthy
postgres:
image: postgres:13
diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css
index 94960f7..654e858 100644
--- a/frontend/src/app/globals.css
+++ b/frontend/src/app/globals.css
@@ -76,4 +76,9 @@ body {
.scrollbar::-webkit-scrollbar-thumb:hover {
background: var(--color-primary);
+}
+
+.copyleft {
+ display:inline-block;
+ transform: rotate(180deg);
}
\ No newline at end of file
diff --git a/frontend/src/components/ui/Footer.tsx b/frontend/src/components/ui/Footer.tsx
index 26efb5a..465e361 100644
--- a/frontend/src/components/ui/Footer.tsx
+++ b/frontend/src/components/ui/Footer.tsx
@@ -2,6 +2,6 @@
export default function Footer() {
return
};
\ No newline at end of file
diff --git a/frontend/src/components/ui/NavBar.tsx b/frontend/src/components/ui/NavBar.tsx
index 83abf22..396f9c5 100644
--- a/frontend/src/components/ui/NavBar.tsx
+++ b/frontend/src/components/ui/NavBar.tsx
@@ -32,7 +32,7 @@ export default function NavBar() {
]}
/>