diff --git a/src/App.css b/src/App.css index 74b5e05..c91f188 100644 --- a/src/App.css +++ b/src/App.css @@ -1,5 +1,11 @@ .App { - text-align: center; + margin: .5em; +} + +.rainfall-gauge { + border: .01em solid black; + padding: .6em; + width: 15em; } .App-logo { @@ -13,15 +19,11 @@ } } -.App-header { +.header { background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); color: white; + text-align: center; + border: .01em solid black; } .App-link { diff --git a/src/App.tsx b/src/App.tsx index a53698a..699cf24 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,24 +1,14 @@ import React from 'react'; import logo from './logo.svg'; import './App.css'; +import Rainfall from './components/rainfall'; function App() { return (
-
- logo -

- Edit src/App.tsx and save to reload. -

- - Learn React - -
+

MooreForge Weather Station

+

Welcome to the MooreForge Weather Station. While a work in progress, there are some functional sensors shown below.

+
); }