Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,9 @@ body {

.scrollbar::-webkit-scrollbar-thumb:hover {
background: var(--color-primary);
}

.copyleft {
display:inline-block;
transform: rotate(180deg);
}
2 changes: 1 addition & 1 deletion frontend/src/components/ui/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

export default function Footer() {
return <footer className="bg-primary text-on-primary text-center p-4 text-sm">
&copy; 2025 Random Website. All rights reserved.
<span className="copyleft">&copy;</span> 2025 Random Website. All rights reversed.
</footer>
};
2 changes: 1 addition & 1 deletion frontend/src/components/ui/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function NavBar() {
]}
/>
<Dropdown
title="Live"
title="Live demo"
links={[
{ href: "/live/video", label: "Video call" },
{ href: "/live/draw", label: "Drawing" },
Expand Down