Ariver
2026-06-29 9d4f977026bbb4516f8cc97f715c0dc28bf2a13f
privatevoice.src/frontend/src/components/settings/AboutPage.svelte
@@ -3,7 +3,7 @@
  import { t } from '../../lib/i18n'
  import AppIcon from '../shared/AppIcon.svelte'
  let version = $state('2.1.28 (build 20260604.0049)')
  let version = $state('2.1.30 (build 20260613.2201)')
  const currentYear = new Date().getFullYear().toString()
  const aboutLinks = [
    { labelKey: 'about.sourceProjectLabel', urlKey: 'about.sourceUrl' },
@@ -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>