-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from tahmid-saj/dev-nutrition-tracker-styling
nutrition tracker styling for signed in
- Loading branch information
Showing
23 changed files
with
482 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/components/signed-in/nutrition-tracker/add-micronutrients/add-micronutrients.styles.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import styled from "styled-components"; | ||
|
||
export const AddMicronutrientsButtonContainer = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
.add-micronutrients-button:hover { | ||
background-color: #ffea97; | ||
border-radius: 2rem; | ||
border: none; | ||
cursor: pointer; | ||
} | ||
` | ||
|
||
export const MicronutrientContainer = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
margin-bottom: 2%; | ||
.remove-micronutrients-button { | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
.remove-micronutrients-button:hover { | ||
background-color: #ff9c9c; | ||
border-radius: 5rem; | ||
border: none; | ||
cursor: pointer; | ||
} | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/components/signed-in/nutrition-tracker/calories-graph/calories-graph.styles.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import styled from "styled-components"; | ||
|
||
export const NutritionTrackerCaloriesGraphContainer = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
margin: 1%; | ||
padding: 1%; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
.../signed-in/nutrition-tracker/nutrition-tracker-filter/nutrition-tracker-filter.styles.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import styled from "styled-components"; | ||
|
||
export const NutritionTrackerFilterContainer = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 2%; | ||
` | ||
|
||
export const FilterButtonsContainer = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...ts/signed-in/nutrition-tracker/nutrition-tracker-table/nutrition-tracker-table.styles.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import styled from "styled-components"; | ||
|
||
export const FilterNutritionTrackerTableContainer = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
margin: 0% 0% 4% 0%; | ||
padding: 2%; | ||
` | ||
|
||
export const FilterButtonsContainer = styled.div` | ||
margin: 1%; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.