fix: styling fixes (#721)

This commit is contained in:
Sophie L 2022-08-08 16:06:21 +01:00 committed by GitHub
parent c2a729a5e0
commit 7cf7402cea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 10 deletions

View file

@ -24,7 +24,6 @@ const PermissionEntry = styled.label<{ disabled?: boolean }>`
width: 100%; width: 100%;
margin: 8px 0; margin: 8px 0;
display: flex; display: flex;
font-size: 1.1em;
align-items: center; align-items: center;
.title { .title {

View file

@ -5,19 +5,33 @@ import styled from "styled-components/macro";
import { useEffect, useErrorBoundary, useState } from "preact/hooks"; import { useEffect, useErrorBoundary, useState } from "preact/hooks";
import { Button } from "@revoltchat/ui";
import { GIT_REVISION } from "../revision"; import { GIT_REVISION } from "../revision";
const CrashContainer = styled.div` const CrashContainer = styled.div`
// defined for the Button component
--error: #ed4245;
--primary-background: #2d2d2d;
height: 100%; height: 100%;
padding: 12px; padding: 12px;
background: black; background: #191919;
color: white; color: white;
h3 { h3 {
margin: 0; margin: 0;
margin-bottom: 12px; margin-bottom: 12px;
} }
code {
font-size: 1.1em;
}
.buttonDivider {
margin: 8px;
}
`; `;
interface Props { interface Props {
@ -65,15 +79,17 @@ export default function ErrorBoundary({ children, section }: Props) {
{section === "client" ? ( {section === "client" ? (
<> <>
<h3>Client Crash Report</h3> <h3>Client Crash Report</h3>
<button onClick={ignoreError}> <Button onClick={ignoreError}>
Ignore error and try to reload app Ignore error and try to reload app
</button> </Button>
<button onClick={reset}> <div class="buttonDivider" />
{confirm ? "Are you sure?" : "Reset all app data"} <Button onClick={() => location.reload()}>
</button>
<button onClick={() => location.reload()}>
Refresh page Refresh page
</button> </Button>
<div class="buttonDivider" />
<Button palette="error" onClick={reset}>
{confirm ? "Are you sure?" : "Reset all app data"}
</Button>
</> </>
) : ( ) : (
<> <>
@ -83,6 +99,9 @@ export default function ErrorBoundary({ children, section }: Props) {
</button> </button>
</> </>
)} )}
<br />
<br />
<div>Revolt has crashed. Here's the error:</div>
<pre> <pre>
<code>{error?.stack}</code> <code>{error?.stack}</code>
</pre> </pre>

View file

@ -45,7 +45,7 @@ export default function Developer() {
</div> </div>
<div style={{ padding: "16px" }}> <div style={{ padding: "16px" }}>
<a onClick={() => setCrash(true)}>click to crash app</a> <a style={"cursor: pointer;"} onClick={() => setCrash(true)}>click to crash app</a>
{crash && (window as any).sus.sus()} {crash && (window as any).sus.sus()}
{/*<span> {/*<span>
<b>Voice Status:</b> {VoiceStatus[voice.status]} <b>Voice Status:</b> {VoiceStatus[voice.status]}