fix(dashboard,css): center align 'waiting on database' (#27611)

This commit is contained in:
Maxime Beauchemin
2024-03-22 12:11:14 -07:00
committed by GitHub
parent 3f073dcd98
commit 20007355d1

View File

@@ -105,6 +105,7 @@ const defaultProps = {
const Styles = styled.div`
min-height: ${p => p.height}px;
position: relative;
text-align: center;
.chart-tooltip {
opacity: 0.75;
@@ -132,6 +133,7 @@ const LoadingDiv = styled.div`
position: absolute;
left: 50%;
top: 50%;
width: 80%;
transform: translate(-50%, -50%);
`;