diff --git a/ui/src/App.sass b/ui/src/App.sass new file mode 100644 index 000000000..406c0f678 --- /dev/null +++ b/ui/src/App.sass @@ -0,0 +1,19 @@ +.mizuApp + background-color: #090b14 + width: 100% + + .header + height: 100px + display: flex + align-items: center + padding-left: 24px + + .title + font-size: 45px + letter-spacing: 2px + + .description + margin-left: 10px + color: rgba(255,255,255,0.5) + padding-top: 15px + font-size: 16px \ No newline at end of file diff --git a/ui/src/App.tsx b/ui/src/App.tsx index 462a3efe8..235f1670c 100644 --- a/ui/src/App.tsx +++ b/ui/src/App.tsx @@ -1,12 +1,13 @@ import React from 'react'; import {HarPage} from "./components/HarPage"; +import './App.sass'; const App = () => { return ( -