Huffle 93758b7790
All checks were successful
Backend Build and Test / build (push) Successful in 2m42s
change font size and move add and delete button in edit screens
2025-05-28 09:58:19 +02:00

40 lines
520 B
SCSS

.toolbar {
display: flex;
align-items: center;
}
.icon {
margin-left: 5px;
}
form {
height: 100%;
}
form,
.item {
display: flex;
flex-direction: column;
align-items: center;
}
label {
color: var(--ion-color-primary);
margin-top: 25px;
margin-bottom: 10px;
}
button {
background-color: var(--ion-color-primary);
border-radius: 5px;
color: white;
padding: 10px;
width: 250px;
margin-top: 100px;
}
button:disabled,
button[disabled]{
opacity: 0.5;
}