Huge bunch of UI/UX improvements and tweaks!
Some checks failed
Test / vitest (push) Successful in 10m36s
Test / playwright (push) Failing after 9m23s
Test / visual (push) Failing after 9m13s
Test / Notify on failure (push) Successful in 2s

This commit is contained in:
Jennie Robinson Faber 2026-04-06 16:17:12 +01:00
parent 501be10bfe
commit fb25e72215
37 changed files with 1651 additions and 949 deletions

View file

@ -447,7 +447,7 @@
<button
type="button"
@click="removeAgendaItem(index)"
class="agenda-remove"
class="link-btn link-btn-danger"
>
<Icon name="heroicons:trash" class="w-4 h-4" />
</button>
@ -949,7 +949,6 @@ const saveAndCreateAnother = async () => {
<style scoped>
.create-form {
max-width: 800px;
margin: 0 auto;
}
.page-header {
@ -972,15 +971,17 @@ const saveAndCreateAnother = async () => {
}
.back-link {
font-size: 12px;
color: var(--candle);
font-size: 11px;
color: var(--text-faint);
text-decoration: none;
margin-bottom: 8px;
display: inline-block;
letter-spacing: 0.02em;
}
.back-link:hover {
text-decoration: underline;
color: var(--candle);
text-decoration: none;
}
.form-body {
@ -1059,6 +1060,8 @@ const saveAndCreateAnother = async () => {
}
.check-label input[type="checkbox"] {
width: auto;
flex-shrink: 0;
margin-top: 2px;
accent-color: var(--candle);
}
@ -1137,16 +1140,22 @@ const saveAndCreateAnother = async () => {
flex: 1;
}
.agenda-remove {
padding: 6px;
color: var(--ember);
.link-btn {
background: none;
border: 1px dashed transparent;
border: none;
color: var(--candle);
cursor: pointer;
font-family: 'Commit Mono', monospace;
font-size: 11px;
padding: 2px 6px;
}
.agenda-remove:hover {
border-color: var(--ember);
.link-btn:hover {
text-decoration: underline;
}
.link-btn-danger {
color: var(--ember);
}
.add-agenda-btn {