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 ( Nginx Proxy Manager is unhealthy. We'll continue to check the health and hope to be back up and running soon! ); } export { Unhealthy };