Ariver
2026-06-24 e533a8cd34995af9aaeeb321b41969a260fef882
Fix about page support link wrapping
1 files modified
12 ■■■■ changed files
privatevoice.src/frontend/src/components/settings/AboutPage.svelte 12 ●●●● patch | view | raw | blame | history
privatevoice.src/frontend/src/components/settings/AboutPage.svelte
@@ -78,7 +78,7 @@
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(560px, 100%);
    width: min(760px, 100%);
  }
  .app-name {
@@ -147,7 +147,8 @@
    color: var(--color-blue);
    font: inherit;
    cursor: pointer;
    word-break: break-all;
    white-space: nowrap;
    word-break: normal;
    text-align: left;
  }
@@ -170,7 +171,7 @@
  }
  .bottom {
    width: min(560px, 100%);
    width: min(760px, 100%);
    margin-top: auto;
    padding-top: 22px;
    text-align: center;
@@ -192,5 +193,10 @@
      grid-template-columns: 1fr;
      gap: 2px;
    }
    .support-link {
      white-space: normal;
      overflow-wrap: anywhere;
    }
  }
</style>