Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/web/views/shared/buttons.templ
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ templ AddButtonNeutralNew(text string, attr templ.Attributes) {

templ ButtonNeutral(text string, attr templ.Attributes) {
<button
type="button"
class="relative justify-center cursor-pointer inline-flex items-center space-x-2 text-center font-regular ease-out
duration-200 rounded-md outline-none transition-all outline-0 focus-visible:outline-4
focus-visible:outline-offset-1 border bg-selection hover:bg-secondary-hover
Expand Down
2 changes: 1 addition & 1 deletion app/web/views/shared/progress_indicator.templ
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package shared
templ ProgressIndicator() {
<div class="progress-indicator mx-auto">
<div
class="indeterminate bg-brand"
class="indeterminate bg-foreground-lighter"
></div>
</div>
}
Loading