Skip to content

Commit

Permalink
Corpo da Tela Detalhe, pequena alteração no botão da tela de reunião …
Browse files Browse the repository at this point in the history
…e Quadro Kanban da tela Calendário
  • Loading branch information
Oleari19 committed Jun 8, 2024
1 parent f9f992b commit 17d1c57
Show file tree
Hide file tree
Showing 14 changed files with 333 additions and 140 deletions.
143 changes: 134 additions & 9 deletions view/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions view/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dependencies": {
"axios": "^1.7.2",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.1"
},
Expand Down
43 changes: 20 additions & 23 deletions view/src/components/Kanban/Kanban.css
Original file line number Diff line number Diff line change
@@ -1,24 +1,12 @@
.kanban {
text-align: center;
margin-top: 50px;
}

.inicio {
display: flex;
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
width: 100%;
justify-content: space-between;
align-items: center;
background-color: blueviolet;
padding: 30px;
margin-left: 120px;

}

.bntTarefa {
border: none;
background-color: brown;
background-color: #414191;
color: white;
font-size: 16px;
padding: 9px 22px;
Expand All @@ -32,14 +20,14 @@
gap: 30px;
justify-content: center;
align-items: flex-start;
padding: 50px 0;
padding: 20px 0;

}

.colunas {
width: 250px;
min-height: 300px;
background-color: blue;
width: 300px;
min-height: 500px;
background-color: #d2d3e4fa;
border-radius: 10px;
overflow: hidden;
padding: 10px;
Expand All @@ -48,7 +36,7 @@
}

.tituloColuna {
background-color: blueviolet;
background-color: #414191;
color: white;
padding: 15px;
text-align: center;
Expand All @@ -57,7 +45,7 @@
}

.tarefaItem {
background-color: #e91919;
background-color: #3A8EBB;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
Expand All @@ -70,6 +58,7 @@

.tarefaItem p {
margin: 5px 0;
color: black;
}

.close {
Expand All @@ -93,8 +82,16 @@
}

.tarefaItem img {
width: 30px;
height: 30px;
width: 20px;
height: 20px;
object-fit: contain;
cursor: pointer;
display: flex;
margin-left: 240px;
}

.separador {
height: 1px;
background-color: black; /* Ou qualquer cor desejada */
margin: 10px 0; /* Adapte conforme necessário */
}
Loading

0 comments on commit 17d1c57

Please sign in to comment.