Skip to content

Commit

Permalink
Fix heading size
Browse files Browse the repository at this point in the history
  • Loading branch information
samderanova committed Mar 4, 2024
1 parent 8307f48 commit c1e41c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion control-station/src/components/SensorBoxes/Console.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./SensorData.css";
function Console() {
return (
<div className="console">
<h1>Console</h1>
<h2>Console</h2>
<ul className="console-list">
<li className="console-list-item">Start Sent</li>
<li className="console-list-item">Stop Sent</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function SensorBox() {
return (
<div className="sensorbox">
<h1 style={{ textAlign: "center", height: "10%" }}>Title</h1>
<h1 className="sensor-value">0</h1>
<h2 className="sensor-value">0</h2>
</div>
);
}
Expand Down

0 comments on commit c1e41c9

Please sign in to comment.