diff --git a/src/App.css b/src/App.css index 3a3194f..be9d527 100644 --- a/src/App.css +++ b/src/App.css @@ -1,3 +1,28 @@ .header { text-align: center; } + +.app-container { + min-height: 100vh; + display: flex; + flex-direction: column; +} + +.main-content { + flex: 1 0 auto; +} + +.balance-spinner-container { + display: flex; + flex-direction: column; + align-items: center; + gap: 10px; +} + +.nav-link-active { + color: white !important; +} + +.nav-link-inactive { + color: gray !important; +} diff --git a/src/App.js b/src/App.js index 3d9d912..a819a3d 100644 --- a/src/App.js +++ b/src/App.js @@ -9,7 +9,7 @@ import React, { useEffect, useCallback } from 'react' import './App.css' import LoadScripts from './components/load-scripts' import AsyncLoad from './services/async-load' -import SelectServerButton from './components/servers/select-server-button' +import SelectServerButton from './components/app-body/servers/select-server-button' import Footer from './components/footer' import NavMenu from './components/nav-menu' import useAppState from './hooks/state' @@ -90,16 +90,19 @@ function App (props) { return ( <> - - {/** Define View to show */} - { - appData.showStartModal - ? () - : () - } - - -