Skip to content

Commit

Permalink
Merge pull request #5 from ktkimura/testing
Browse files Browse the repository at this point in the history
UI touchups
  • Loading branch information
ktkimura authored Aug 16, 2024
2 parents 35d3698 + 4ee68ad commit 770f3fa
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
14 changes: 13 additions & 1 deletion lets-get-cooking/backend/microD/commPipeD.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
{
"expiredIngredients": [
"ingredients": [
{
"id": "24fa6dab-cc55-4e4f-b3b4-be662d0727e9",
"name": "miso",
"quantity": "1",
"expirationDate": "2024-08-28"
},
{
"id": "92529cbd-23d4-4aa1-90e9-ad22e1a5931f",
"name": "sesame oil",
"quantity": "12 oz",
"expirationDate": "2024-08-20"
},
{
"id": "d4cbe501-4a80-47e7-96fc-78013173e349",
"name": "mirin",
Expand Down
16 changes: 13 additions & 3 deletions lets-get-cooking/frontend/src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
:root{
--gray:#bdbdbd;
--lightGray: #dfdfdf;
}

textArea {
width: 300px;
height: 50px;
Expand All @@ -13,27 +18,32 @@ article {
}

table, th, td {
text-align: left;
border: 1px solid;
border-collapse: collapse;
margin-top: 30px;
margin-bottom: 30px;
padding: 5px;
}

th {
padding: 5px;
background-color: lightgray;
background-color: var(--gray);
}

td {
padding: 5px;
}


/* make Link elements appear as buttons */
a.btn, button {
text-decoration: none;
color:black;
font-size: 15px;
background-color:var(--lightGray);
position: relative;
margin: 5px;
padding: 3px;
padding: 5px;
border: 1px solid #333333;
border-radius: 8px;
}
Expand Down
2 changes: 1 addition & 1 deletion lets-get-cooking/frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ function App() {
<BrowserRouter>
<header>
<h1>Let's Get Cooking!</h1>
<Navigation />
</header>
<Navigation />
<main>
<section>
<Routes>
Expand Down

0 comments on commit 770f3fa

Please sign in to comment.