@robotical/sensors-dashboard
Version:
A dashboard tool for depicting Marty data by Robotical
31 lines (28 loc) • 536 B
CSS
.header {
grid-area: header;
display: grid;
grid-template-columns: 0.2fr 0.8fr;
margin-bottom: 1rem;
padding: 2rem;
}
.title {
position: absolute;
top: 4rem;
left: 50%;
transform: translateX(-50%);
width: fit-content;
font-size: 4rem;
text-align: center;
font-family: "BigNoodleTitling Regular";
}
.helpButton {
grid-column: 1/3;
justify-self: center;
padding: 1rem;
background-color: var(--colour-primary);
color: white;
border-radius: 5px;
cursor: pointer;
outline: none;
border: none;
}