set up new workflow and migrate to .forgejo dir (#5)
Some checks failed
Deploy / deploy (push) Failing after 39s

Co-authored-by: Benjamin Palko <benjaminpalko@hotmail.com>
Reviewed-on: #5
This commit is contained in:
Benjamin Palko 2026-08-11 20:55:29 -04:00
parent c37955c51b
commit f526f5c0aa
99 changed files with 1866 additions and 1470 deletions

View file

@ -1,23 +1,27 @@
### steps
Steps can be used to show a list of steps in a process
[steps docs](https://daisyui.com/components/steps/)
#### Class Names:
- Component: `steps`
- Part: `step`, `step-icon`
- Color: `step-neutral`, `step-primary`, `step-secondary`, `step-accent`, `step-info`, `step-success`, `step-warning`, `step-error`
- Direction: `steps-vertical`, `steps-horizontal`
#### Syntax
```html
<ul class="steps {DIRECTION}">
<li class="step step-primary">{completed step}</li>
<li class="step">{upcoming step}</li>
<li class="step step-primary">{completed step}</li>
<li class="step">{upcoming step}</li>
</ul>
```
#### Rules
- Steps are horizontal by default; add `steps-vertical` to the `ul` for a vertical layout
- Direction classes go on `steps`; `step-*` color classes go on individual `step` items
- To mark a step with the primary color, add `step-primary` to that `li`