fix: use private helcimApiToken for all server-side Helcim API calls

This commit is contained in:
Jennie Robinson Faber 2026-04-04 13:37:34 +01:00
parent ccd1d0783a
commit d31b5b4dac
53 changed files with 1755 additions and 572 deletions

View file

@ -583,7 +583,7 @@ onUnmounted(() => {
}
:deep(.parchment-inset ul li) {
font-size: 13px;
color: #c8bea8;
color: var(--parch-text-dim);
line-height: 1.75;
padding: 4px 0;
padding-left: 16px;
@ -609,6 +609,7 @@ onUnmounted(() => {
.content-row {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
align-items: stretch;
border-bottom: 1px dashed var(--border);
}
.content-block {
@ -616,6 +617,7 @@ onUnmounted(() => {
border-right: 1px dashed var(--border);
min-width: 0;
overflow-wrap: break-word;
align-self: stretch;
}
.content-block:last-child {
border-right: none;
@ -871,8 +873,8 @@ onUnmounted(() => {
text-align: center;
}
.form-submit:hover {
background: #3a3025;
border-color: #3a3025;
background: var(--parch-hover);
border-color: var(--parch-hover);
color: var(--candle-dim);
text-decoration: none;
}