Skip to content

Commit 776830e

Browse files
committed
projeto finalizado
1 parent ccf7f13 commit 776830e

2 files changed

Lines changed: 181 additions & 141 deletions

File tree

src/App.css

Lines changed: 66 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ html, body, #root {
105105
min-height: 100vh;
106106
display: flex;
107107
flex-direction: column;
108-
background-color: white; /* Corrigido para branco conforme Imagem 2 */
108+
background-color: white;
109109
}
110110

111111
.dashboard-header {
@@ -280,75 +280,111 @@ html, body, #root {
280280
}
281281

282282
.material-symbols-outlined { color: white; }
283+
283284
/* ========================================= */
284-
/* SAQUE E DEPÓSITO (ESTILO ORIGINAL) */
285+
/* SAQUE E DEPÓSITO (ESTILO ORIGINAL CORRIGIDO)*/
285286
/* ========================================= */
286287

287288
.balance {
289+
background-color: #01368B;
290+
border-radius: 10px;
288291
display: flex;
289292
justify-content: space-between;
290293
align-items: center;
291-
background-color: #01368B;
294+
padding: 15px 30px;
292295
color: white;
293-
padding: 15px 25px;
294-
border-radius: 10px;
295-
font-size: 18px;
296+
width: 100%;
297+
margin-bottom: 30px;
296298
}
297299

298300
.notes {
299-
display: flex;
300-
flex-wrap: wrap;
301-
gap: 25px;
302-
margin-top: 20px;
303-
justify-content: center;
301+
display: grid;
302+
grid-template-columns: repeat(4, 1fr); /* Organiza em 4 colunas como no Figma */
303+
gap: 30px;
304+
width: 100%;
305+
justify-items: center;
304306
}
305307

306308
.note-card {
307-
background-color: #4F76B3;
308-
color: white;
309-
padding: 20px;
310-
border-radius: 15px;
311-
width: 140px;
312-
text-align: center;
313-
box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
309+
display: flex;
310+
flex-direction: column;
311+
align-items: center;
312+
gap: 10px;
314313
}
315314

316315
.note {
317-
font-size: 24px;
316+
background-color: #4F76B3; /* Volta o azul da cédula */
317+
width: 160px;
318+
height: 90px;
319+
border-radius: 12px;
320+
display: flex;
321+
justify-content: center;
322+
align-items: center;
323+
font-size: 26px;
318324
font-weight: bold;
319-
margin-bottom: 10px;
325+
color: white;
326+
position: relative;
327+
overflow: hidden;
328+
box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
329+
border: 2px solid rgba(255, 255, 255, 0.3);
330+
}
331+
332+
/* Detalhe da cédula */
333+
.note::before {
334+
content: "";
335+
position: absolute;
336+
width: 70px;
337+
height: 70px;
338+
border: 4px solid rgba(255, 255, 255, 0.4);
339+
border-radius: 50%;
320340
}
321341

322342
.counter {
343+
background-color: #002884; /* Azul escuro do DevBank */
323344
display: flex;
324-
flex-direction: column;
345+
justify-content: space-between;
325346
align-items: center;
326-
gap: 5px;
347+
width: 160px;
348+
padding: 8px 20px;
349+
border-radius: 10px;
350+
color: white;
327351
}
328352

329353
.counter button {
330-
padding: 6px 12px;
354+
background: none; /* Tira o fundo preto */
331355
border: none;
332-
border-radius: 6px;
333-
background-color: #003B73;
334356
color: white;
357+
font-size: 20px;
335358
cursor: pointer;
336359
font-weight: bold;
337360
}
338361

339362
.actions {
340-
margin-top: 30px;
363+
margin-top: 50px; /* Aumenta o espaço acima dos botões */
341364
display: flex;
342-
justify-content: space-between;
365+
justify-content: center;
366+
gap: 40px; /* Aumenta o espaço entre Voltar e Confirmar */
367+
width: 100%;
343368
}
344369

345370
.actions button {
346-
padding: 12px 40px;
347-
background-color: #003B73;
371+
padding: 15px 60px;
372+
background-color: #003B73; /* Azul padrão Mauá */
348373
color: white;
349374
border: none;
350-
border-radius: 30px;
375+
border-radius: 40px;
351376
font-weight: bold;
352377
cursor: pointer;
378+
font-size: 18px;
353379
box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
380+
}
381+
382+
/* Correção específica para o botão de voltar preto no header */
383+
.btn-back-header, .grupo-esquerda-header button {
384+
background-color: #003B73 !important; /* Força a cor certa */
385+
border-radius: 8px;
386+
padding: 5px;
387+
display: flex;
388+
align-items: center;
389+
justify-content: center;
354390
}

0 commit comments

Comments
 (0)