Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
FranceBrescia committed Dec 16, 2023
1 parent 3de4f5b commit 6868221
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version: '3.4'

services:
backend:
build: . # Assicurati che questo punti alla directory con il Dockerfile corretto per il servizio web
build: .
image: detectiononlinesexism_backend
ports:
- "8000:8000"

frontend:
build:
context: frontend # Assicurati che questo punti alla directory con il Dockerfile del frontend
context: frontend
image: detectiononlinesexism_frontend
ports:
- "8080:8080"
8 changes: 4 additions & 4 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
}

.description-card {
background-color: #464a8a;
background-color: #D91B5B;
}

.classifier-card {
background-color: #464a8a;
background-color: #D91B5B;
}

.btn-black-text {
Expand All @@ -68,15 +68,15 @@
}

.bg-blue {
background-color: #464a8a;
background-color: #D91B5B;
}
</style>
</head>

<body>
<nav class="navbar navbar-expand-lg navbar-light bg-blue">
<a class="navbar-brand" href="#">
<img src="images/logo.png" alt="Logo" class="logo bg-blue">
<img src="images/logo.png" alt="Logo" class="logo">
<h1>Detection Of Online Sexism</h1>
</a>
</nav>
Expand Down

0 comments on commit 6868221

Please sign in to comment.