add delete step button

This commit is contained in:
Michi 2024-11-12 21:37:17 +01:00
parent 1b6c6c0f91
commit 85bc8eaf43
3 changed files with 42 additions and 1 deletions

View file

@ -175,6 +175,29 @@ body.viewer .editor {
color: var(--primary);
}
/* Step controls */
.stepControls button{
display: flex;
flex-direction: row-reverse;
justify-content: center;
align-items: center;
width: 40%;
height: auto;
padding: 10px 20px;
background: var(--primary);
color: var(--white);
font-size: 1rem;
border-radius: 20px;
border: 2px solid var(--primary);
transition: var(--transition);
}
.stepControls button:hover{
background: var(--white);
color: var(--primary);
border-color: var(--primary);
}
/* Print View */
@media print{
.stepsContainer{