Shared: Errors: fix style

This commit is contained in:
Viktor Fomin 2024-03-06 13:59:00 +03:00
parent de49f1f378
commit 5c00cf3939
2 changed files with 10 additions and 0 deletions

View File

@ -59,6 +59,7 @@ const Error520 = ({
<Error520Wrapper>
<DocspaceLogo className="logo" whiteLabelLogoUrls={whiteLabelLogoUrls} />
<ErrorContainer
className="container"
isPrimaryButton={false}
headerText={t("SomethingWentWrong")}
/>

View File

@ -1,4 +1,5 @@
import styled from "styled-components";
import { mobile } from "../../utils";
export const ErrorUnavailableWrapper = styled.div`
width: 100%;
@ -17,6 +18,14 @@ export const Error520Wrapper = styled.div`
justify-content: center;
margin: 0 16px;
@media ${mobile} {
justify-content: start;
}
.container {
height: auto !important;
}
.logo {
margin-bottom: 28px;
}