mirror of
https://github.com/michivonah/click-guide.git
synced 2025-12-22 22:16:28 +01:00
add delete step button
This commit is contained in:
parent
1b6c6c0f91
commit
85bc8eaf43
3 changed files with 42 additions and 1 deletions
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue