diff --git a/apps/pwabuilder/src/script/pages/app-report.ts b/apps/pwabuilder/src/script/pages/app-report.ts index cadece6e6..7a11e8691 100644 --- a/apps/pwabuilder/src/script/pages/app-report.ts +++ b/apps/pwabuilder/src/script/pages/app-report.ts @@ -176,7 +176,7 @@ export class AppReport extends LitElement { "file_handlers": "Be a default handler for certain filetypes with file_handlers", "handle_links": "Open links as an app with handle_links", "protocol_handlers": "Create a custom protocol_handler", - "edge_side_panel": "Increase reach by partcipating in the edge_side_panel", + "edge_side_panel": "Increase reach by participating in the edge_side_panel", "widgets": "Increase reach with widgets" } @@ -499,6 +499,10 @@ export class AppReport extends LitElement { margin: 0; } + .visually-hidden { + font-size: 0; + } + #site-url { text-overflow: ellipsis; overflow: hidden; @@ -2887,7 +2891,10 @@ export class AppReport extends LitElement { ${this.proxyLoadingImage || this.appCard.iconURL.length === 0 ? html`` : html`${this.appCard.iconAlt}`}
-

${this.appCard.siteName}

+

+ ${this.appCard.siteName} + Report card page for ${this.appCard.siteName} +

${this.appCard.siteUrl}

${this.truncateString(this.appCard.description)}

diff --git a/apps/pwabuilder/src/script/pages/qualification/app-token.style.ts b/apps/pwabuilder/src/script/pages/qualification/app-token.style.ts index d1e5fb8e6..c3951df62 100644 --- a/apps/pwabuilder/src/script/pages/qualification/app-token.style.ts +++ b/apps/pwabuilder/src/script/pages/qualification/app-token.style.ts @@ -430,9 +430,10 @@ export default css` font-size: 14px; } -#words p:nth-child(1) { +#words h1 { font-size: 24px; font-weight: 700; + margin: 0; } #words p:nth-child(2) { width: 55%; diff --git a/apps/pwabuilder/src/script/pages/qualification/app-token.template.ts b/apps/pwabuilder/src/script/pages/qualification/app-token.template.ts index d633cf83b..f4aab18c3 100644 --- a/apps/pwabuilder/src/script/pages/qualification/app-token.template.ts +++ b/apps/pwabuilder/src/script/pages/qualification/app-token.template.ts @@ -183,7 +183,7 @@ export function renderAppCard( />
-

${appCard.siteName}

+

${appCard.siteName}

${appCard.siteUrl}

${appCard.description}

@@ -315,7 +315,7 @@ export function renderAppCard( />
-

${appCard.siteName}

+

${appCard.siteName}

${appCard.siteUrl}

${appCard.description}

diff --git a/docs/src/sidebarGeneration.ts b/docs/src/sidebarGeneration.ts index 12583ddc4..a2f1e079f 100644 --- a/docs/src/sidebarGeneration.ts +++ b/docs/src/sidebarGeneration.ts @@ -64,7 +64,7 @@ function constructMenuItemLineString(article: Article): string { } function constructHeaderLineString(childMenu: ChildMenu): string { - return `\n\n\- **${childMenu.header}**`; + return `\n\n-

${childMenu.header}

\n`; } function constructTopLevelNavString(activeHeader: string): string {