Files
PeerNotes/frontend/src/styles/App.css
Sahej Panag 9e618803ed refiling and api call for search (#11)
* refiling and api call for search

* updating allowed hosts

* update search

* proper api call

* search page working

* navbar

* small fixes

* fix types

---------

Co-authored-by: Sahej Panag <spanag3@gatech.edu>
Co-authored-by: afazio1 <alexa.fazio04@gmail.com>
2024-04-20 23:22:45 -04:00

30 lines
635 B
CSS

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
margin: 0;
width: 100%;
background-color: #145DA0;
border: none;
border-radius: 0;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
box-sizing: border-box;
}
.App {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; /* If you're centering the content */
height: 100vh; /* Full height */
margin-top: -100px; /* Move up */
}
body {
background-color: #0C2D48;
font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}