Merge branch 'main' into alexa-auth-frontend

This commit is contained in:
afazio1
2024-04-11 00:47:46 -04:00
4 changed files with 10 additions and 7 deletions

View File

@@ -7,9 +7,8 @@ export default function App() {
return ( return (
<> <>
<Navbar /> <Navbar />
<h1>PeerNotes</h1> <div className="App" style={{ display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', height: '100vh' , gap: 15}}>
<div className="App" style={{ display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', height: '100vh' }}> <img
<img
src="/PeerNotes.png" src="/PeerNotes.png"
alt="PeerNotes Logo" alt="PeerNotes Logo"
style={{ style={{

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

View File

@@ -1,5 +1,5 @@
import React from 'react'; import React from 'react';
import '../screens/MainScreenWrapper.css'; import '../styles/MainScreenWrapper.css';
const MainSearch: React.FC = () => { const MainSearch: React.FC = () => {
return ( return (

View File

@@ -28,12 +28,16 @@ html, body {
font-weight: bold; font-weight: bold;
} }
select { .filter-item > select {
padding: 8px; padding: 8px;
border: 1px solid #2E8BC0; border: 1px solid #2E8BC0;
border-radius: 4px; border-radius: 4px;
width: 100%; /* fill the container width */ width: 100%;
} }
.filter-item {
width: 100%;
}
.submit-button { .submit-button {
padding: 8px 16px; padding: 8px 16px;