mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 03:30:05 +00:00
46 lines
806 B
TypeScript
46 lines
806 B
TypeScript
import React from "react";
|
|
|
|
import { Alert } from "components";
|
|
import styled from "styled-components";
|
|
|
|
const Root = styled.div`
|
|
padding: 20vh 10vw 0 10vw;
|
|
|
|
&& .ant-alert-warning {
|
|
background-color: #2a2a2a;
|
|
border: 2px solid #2ab1a4;
|
|
color: #eee;
|
|
}
|
|
|
|
&& .ant-alert-message {
|
|
color: #fff;
|
|
font-size: 6vh;
|
|
}
|
|
|
|
&& .ant-alert-description {
|
|
font-size: 4vh;
|
|
line-height: 5vh;
|
|
}
|
|
|
|
&& .ant-alert-with-description {
|
|
padding-left: 23vh;
|
|
}
|
|
|
|
&& .ant-alert-with-description .ant-alert-icon {
|
|
font-size: 15vh;
|
|
}
|
|
`;
|
|
|
|
function Unhealthy() {
|
|
return (
|
|
<Root>
|
|
<Alert type="warning" icon="alert-triangle">
|
|
Nginx Proxy Manager is <strong>unhealthy</strong>. We'll continue to
|
|
check the health and hope to be back up and running soon!
|
|
</Alert>
|
|
</Root>
|
|
);
|
|
}
|
|
|
|
export { Unhealthy };
|