diff --git a/x/examples/outline-connectivity-app/shared_frontend/pages/connectivity_test/index.ts b/x/examples/outline-connectivity-app/shared_frontend/pages/connectivity_test/index.ts index e1efc6fe..48f3a3ad 100644 --- a/x/examples/outline-connectivity-app/shared_frontend/pages/connectivity_test/index.ts +++ b/x/examples/outline-connectivity-app/shared_frontend/pages/connectivity_test/index.ts @@ -191,7 +191,8 @@ export class ConnectivityTestPage extends LitElement { width: 100vw; } - .header { + .header, + .header--ios { background: var(--color-background-brand); display: flex; justify-content: center; @@ -201,6 +202,10 @@ export class ConnectivityTestPage extends LitElement { width: 100%; } + .header--ios { + padding-top: 3.7rem; + } + .header-text { color: var(--color-text-brand); font-family: var(--font-sans-serif); @@ -593,7 +598,7 @@ export class ConnectivityTestPage extends LitElement { // TODO: move language definitions to a centralized place return html`
${this.renderPlatformStyles()} -
+

${msg("Outline Connectivity Test")}

${this.renderResults()} @@ -752,25 +757,6 @@ export class ConnectivityTestPage extends LitElement {
`; } - renderPlatformStyles() { - if (!this.platform) { - return nothing; - } - - // TODO: changes how switches look on android - switch (this.platform.operatingSystem) { - case OperatingSystem.IOS: - return html` - `; - default: - return nothing; - } - } - renderResults() { if (!this.response) { return nothing;