27 lines
399 B
CSS
27 lines
399 B
CSS
.containerForm {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.buttonSave {
|
|
background-color: #002b7a;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.buttonSave:not(:disabled):hover {
|
|
background-color: #001f5c;
|
|
}
|
|
|
|
.altaContainerButton{
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
/* ===== RESPONSIVE ===== */
|
|
@media (max-width: 768px) {
|
|
.gridAlta {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|