Skip to content

Commit

Permalink
feat(step): revert evenly divided, no effect as circular is flex 1
Browse files Browse the repository at this point in the history
  • Loading branch information
lubber-de authored Nov 8, 2024
1 parent 30088c4 commit 9f96906
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions src/definitions/elements/step.less
Original file line number Diff line number Diff line change
Expand Up @@ -673,48 +673,48 @@
Evenly Divided
-------------------- */

.ui.one.steps:not(.circular),
.ui.two.steps:not(.circular),
.ui.three.steps:not(.circular),
.ui.four.steps:not(.circular),
.ui.five.steps:not(.circular),
.ui.six.steps:not(.circular),
.ui.seven.steps:not(.circular),
.ui.eight.steps:not(.circular) {
.ui.one.steps,
.ui.two.steps,
.ui.three.steps,
.ui.four.steps,
.ui.five.steps,
.ui.six.steps,
.ui.seven.steps,
.ui.eight.steps {
width: 100%;
}
.ui.one.steps:not(.circular) > .step,
.ui.two.steps:not(.circular) > .step,
.ui.three.steps:not(.circular) > .step,
.ui.four.steps:not(.circular) > .step,
.ui.five.steps:not(.circular) > .step,
.ui.six.steps:not(.circular) > .step,
.ui.seven.steps:not(.circular) > .step,
.ui.eight.steps:not(.circular) > .step {
.ui.one.steps > .step,
.ui.two.steps > .step,
.ui.three.steps > .step,
.ui.four.steps > .step,
.ui.five.steps > .step,
.ui.six.steps > .step,
.ui.seven.steps > .step,
.ui.eight.steps > .step {
flex-wrap: nowrap;
}
.ui.one.steps:not(.circular) > .step {
.ui.one.steps > .step {
width: 100%;
}
.ui.two.steps:not(.circular) > .step {
.ui.two.steps > .step {
width: 50%;
}
.ui.three.steps:not(.circular) > .step {
.ui.three.steps > .step {
width: 33.333%;
}
.ui.four.steps:not(.circular) > .step {
.ui.four.steps > .step {
width: 25%;
}
.ui.five.steps:not(.circular) > .step {
.ui.five.steps > .step {
width: 20%;
}
.ui.six.steps:not(.circular) > .step {
.ui.six.steps > .step {
width: 16.666%;
}
.ui.seven.steps:not(.circular) > .step {
.ui.seven.steps > .step {
width: 14.285%;
}
.ui.eight.steps:not(.circular) > .step {
.ui.eight.steps > .step {
width: 12.5%;
}
}
Expand Down

0 comments on commit 9f96906

Please sign in to comment.