diff --git a/public/index.html b/public/index.html index 2899d0d..78beb3f 100644 --- a/public/index.html +++ b/public/index.html @@ -6,7 +6,7 @@
+ {name}: {value} +
+ ); +}; diff --git a/src/styles/App.css b/src/styles/App.css index ec73589..4e0f92b 100644 --- a/src/styles/App.css +++ b/src/styles/App.css @@ -1,18 +1,53 @@ .App { - min-height: 250px; + height: 400px; + display: flex; + flex-direction: column; + justify-content: space-between; +} + +.App section { + padding: 3vh 5vw; + overflow-y: auto; + flex-grow: 1; } #mainContent { display: flex; justify-content: space-between; - padding-left: 5vw; - padding-right: 5vw; + align-items: center; +} + +#mainButtons { + display: flex; + align-items: center; + gap: 4px; +} + +#bugReportButton { + padding: 0; + border-radius: 6px; + height: fit-content; +} + +#bugReportIcon { + font-size: 2rem; + padding: 2px; + color: #bf0a30; } #settingsButton { padding: 0; + border-radius: 6px; + height: fit-content; } #settingsIcon { font-size: 2rem; + padding: 2px; + color: #2b7dff; +} + +#bottomNavBar { + border-top: solid 1px #989898b0; + flex-shrink: 0; } diff --git a/src/styles/SearchBar.css b/src/styles/SearchBar.css index bd9e362..5141567 100644 --- a/src/styles/SearchBar.css +++ b/src/styles/SearchBar.css @@ -50,15 +50,14 @@ } .search-bar { - width: 85vw; - margin-bottom: 10%; - margin-left: 5vw; - box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); + width: 100%; + margin-bottom: 3vh; } .loading-container { display: flex; - justify-content: space-between; + justify-content: center; + align-items: center; margin-bottom: 20px; }