Design token updates.
Some checks failed
Test / vitest (push) Successful in 10m47s
Test / playwright (push) Failing after 9m11s
Test / visual (push) Failing after 9m11s
Test / Notify on failure (push) Successful in 2s

This commit is contained in:
Jennie Robinson Faber 2026-04-11 23:24:38 +01:00
parent de3bcc479a
commit c6b970a621
13 changed files with 198 additions and 211 deletions

View file

@ -240,7 +240,7 @@ useHead({
<style scoped>
.loading-state {
padding: 60px 24px;
padding: 48px 24px;
text-align: center;
color: var(--text-faint);
font-size: 12px;
@ -256,7 +256,7 @@ useHead({
}
.filter-select {
font-family: "Commit Mono", monospace;
font-family: inherit;
font-size: 11px;
padding: 5px 10px;
border: 1px dashed var(--border);
@ -266,13 +266,14 @@ useHead({
outline: none;
-webkit-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238a7e6a' stroke-width='1.2'/%3E%3C/svg%3E");
background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23b8a880' stroke-width='1.2'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 8px center;
padding-right: 26px;
}
.filter-select:focus {
border-color: var(--candle-faint);
border-style: solid;
}
.connections-section {
@ -329,7 +330,6 @@ useHead({
.cc-name {
font-size: 13px;
font-weight: 600;
color: var(--text-bright);
}
.cc-name a {
@ -380,7 +380,6 @@ useHead({
.match-tag {
color: var(--text);
font-weight: 600;
min-width: 0;
}
@ -414,11 +413,11 @@ useHead({
.cc-slack {
font-size: 11px;
color: var(--candle-dim);
font-family: "Commit Mono", monospace;
font-family: inherit;
}
.text-action {
font-family: "Commit Mono", monospace;
font-family: inherit;
font-size: 11px;
color: var(--text-faint);
background: none;
@ -440,8 +439,8 @@ useHead({
text-align: center;
}
.empty-title {
font-family: "Brygada 1918", serif;
font-size: 18px;
font-family: var(--font-display);
font-size: 16px;
color: var(--text-dim);
margin-bottom: 6px;
}
@ -463,13 +462,13 @@ useHead({
.filter-bar {
flex-direction: column;
align-items: stretch;
padding: 14px 20px;
padding: 12px 20px;
}
.connections-section {
padding: 16px 20px;
}
.connection-card {
padding: 14px 16px;
padding: 12px 16px;
}
}
</style>