Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,460 changes: 3,210 additions & 3,250 deletions frontend/package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
@import "tailwindcss/utilities";

#root {
max-width: 100%;
width: 100%;
margin: 0 auto;
text-align: center;
}

.app-container {
display: flex;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */
align-items:baseline; /* Centers vertically */
text-align: center; /* Optional: centers text inside */
width: 100%;
min-height:100vh;
}

47 changes: 0 additions & 47 deletions frontend/src/GrantSearch.css

This file was deleted.

1 change: 0 additions & 1 deletion frontend/src/grant-info/components/GrantList.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
font-family: 'Inter', sans-serif;
width: 292px;
height: 46px;
margin-left: 40px;
}

.calendar-toggle-button:hover {
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/grant-info/components/StatusIndicator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const StatusIndicator: React.FC<StatusIndicatorProps> = ({ curStatus }) => {
return (
<div className="justify-self-center">
<span className="flex items-center">
<FaCircle style={{ color: circleColor}} className="mr-8" />
<FaCircle style={{ color: circleColor}} className="mr-4" />
{/* The text label: #000, "Helvetica Neue", 28px */}
<span className="w-16 text-left">{labelText}</span>
<span className="w-20 text-left">{labelText}</span>
</span>
</div>
);
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/grant-info/components/styles/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
justify-content: space-evenly;
align-items: center;
flex-direction: column;
height: 100%;
flex-grow: 1;


background-color: #ffffff;
border-color: rgb(228, 228, 231);
width: 100%;
height: 100%;
padding: 1em;

/* Text */
font-size: 1.3rem;
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/grant-info/components/styles/GrantPage.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ html, body {
justify-content: flex-start;
background-color: #F2EBE4;
width: 100%;
height: 100vh;
height: 100%;
overflow-y: auto;
padding-bottom: 1em;
}

/* Main actions on the grant list (SEARCH, FILTER, ADD) */
Expand All @@ -23,8 +24,7 @@ html, body {
justify-content: space-between;
width: 100%;
height: 125px;
margin: 4px;
padding: 2rem;
padding: 1rem 2rem 1rem 2rem;
}

.right-action-bar {
Expand All @@ -36,5 +36,5 @@ html, body {
.bot-half {
display: flex;
flex-direction: column;
margin: 0 1rem;
margin: 0 2rem;
}
2 changes: 1 addition & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

color-scheme: light dark;
color: rgba(0, 0, 0, 0.87);
background-color: #242424;
background-color: #F2EBE4;

font-synthesis: none;
text-rendering: optimizeLegibility;
Expand Down
8 changes: 6 additions & 2 deletions frontend/src/styles/GrantSearch.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.search-bar-main-container {
width: 461px;
padding: 20px;
min-width: 300px;
}

.search-container {
Expand All @@ -14,13 +13,18 @@
.search-input-container {
position: relative;
width: 100%;
border: 2px solid black;
border-radius: 8px;
}

.search-input {
color: black;
padding: 8px;
border-radius: 8px;
border: 0px;
}


.filter-state {
color: whitesmoke;
}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/styles/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

.grant-buttons {
display: flex;
flex: 1;
align-items: center;
width:100%;
margin: 0;
padding: 0;
Expand Down