@robotical/sensors-dashboard
Version:
A dashboard tool for depicting Marty data by Robotical
52 lines (47 loc) • 979 B
CSS
.addGraphBtnContainer {
display: grid;
justify-content: center;
align-content: center;
position: absolute;
top: 2rem;
right: 2rem;
width: 4rem;
height: 4rem;
}
.buttonMiddleOfScreen {
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(1.5);
}
.graphsArea {
display: grid;
grid-auto-rows: minmax(310px, 310px);
}
.addGraphBtn {
display: inline-block;
display: grid;
align-items: center;
justify-items: center;
padding: 1rem 2rem;
background-color: var(--colour-primary);
border-radius: 50%;
color: white;
cursor: pointer;
}
.martyConnectedFallback {
text-align: center;
font-weight: bold;
font-size: 2rem;
background-color: lightcoral;
padding: 1rem;
}
.addNewGraphMessage {
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-weight: bold;
font-size: 2rem;
padding: 1rem;
}