This commit is contained in:
William Moore 2023-01-19 18:14:30 -06:00
parent b71b01d785
commit 1a0de9e397
2 changed files with 5 additions and 2 deletions

View File

@ -4,14 +4,16 @@
.rainfall-gauge { .rainfall-gauge {
border: .01em solid black; border: .01em solid black;
border-radius: 1em;
padding: .6em; padding: .6em;
height: 3vh; height: 3vh;
} }
.soil-gauge { .soil-gauge {
border: .01em solid black; border: .01em solid black;
border-radius: 1em;
padding: .6em; padding: .6em;
height: 5vh; height: 7vh;
} }
@media (max-width: 501px) { @media (max-width: 501px) {
@ -28,7 +30,7 @@
} }
.soil-gauge { .soil-gauge {
height: 10vh; height: 12vh;
} }
.rainfall-gauge { .rainfall-gauge {

View File

@ -33,6 +33,7 @@ const Sensor = () => {
return ( return (
<div className={'gauge-body'}> <div className={'gauge-body'}>
<div className={'gauge-label'}>Soil</div>
<div className={'gauge-label'}>Temperature (in C)</div> <div className={'gauge-label'}>Temperature (in C)</div>
<div>{temp}</div> <div>{temp}</div>
<div className={'gauge-label'}>Capacitance</div> <div className={'gauge-label'}>Capacitance</div>