Removendo animações da pagina

parent aebb48eb
...@@ -107,7 +107,6 @@ header h1 { ...@@ -107,7 +107,6 @@ header h1 {
font-weight: 700; font-weight: 700;
border: none; border: none;
cursor: pointer; cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-size: 1rem; font-size: 1rem;
box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25); box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
} }
...@@ -119,8 +118,6 @@ header h1 { ...@@ -119,8 +118,6 @@ header h1 {
.btn-primary:hover { .btn-primary:hover {
background: #256627; background: #256627;
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
} }
.btn-secondary { .btn-secondary {
...@@ -132,7 +129,6 @@ header h1 { ...@@ -132,7 +129,6 @@ header h1 {
.btn-secondary:hover { .btn-secondary:hover {
background: var(--wood-brown); background: var(--wood-brown);
color: white; color: white;
transform: translateY(-2px);
} }
.btn-edit { .btn-edit {
...@@ -144,7 +140,6 @@ header h1 { ...@@ -144,7 +140,6 @@ header h1 {
.btn-edit:hover { .btn-edit:hover {
background: #e38f4a; background: #e38f4a;
transform: scale(1.08);
} }
.btn-delete { .btn-delete {
...@@ -163,7 +158,7 @@ header h1 { ...@@ -163,7 +158,7 @@ header h1 {
border-radius: 16px; border-radius: 16px;
border: 4px solid var(--wood-brown); border: 4px solid var(--wood-brown);
box-shadow: var(--shadow-wood); box-shadow: var(--shadow-wood);
overflow: hidden; /* 🔥 ESSA LINHA RESOLVE O PROBLEMA */ overflow: hidden;
} }
.animals-table { .animals-table {
...@@ -171,7 +166,7 @@ header h1 { ...@@ -171,7 +166,7 @@ header h1 {
border-collapse: collapse; border-collapse: collapse;
background: var(--card-bg); background: var(--card-bg);
table-layout: auto; table-layout: auto;
border-radius: 12px; /* arredonda a própria tabela também */ border-radius: 12px;
} }
.animals-table thead { .animals-table thead {
...@@ -194,13 +189,8 @@ header h1 { ...@@ -194,13 +189,8 @@ header h1 {
color: var(--text-dark); color: var(--text-dark);
} }
.animals-table tbody tr {
transition: all 0.3s ease;
}
.animals-table tbody tr:hover { .animals-table tbody tr:hover {
background-color: #f8f1e3; background-color: #f8f1e3;
transform: scale(1.01);
} }
/* Formulário de cadastro */ /* Formulário de cadastro */
...@@ -231,7 +221,6 @@ header h1 { ...@@ -231,7 +221,6 @@ header h1 {
border-radius: 12px; border-radius: 12px;
font-family: 'Lexend', sans-serif; font-family: 'Lexend', sans-serif;
font-size: 1rem; font-size: 1rem;
transition: all 0.3s ease;
background: #fffef7; background: #fffef7;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment