-
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 #146 from tahmid-saj/dev-nutrition-tracker-styling
nutrition tracker styling
- Loading branch information
Showing
6 changed files
with
136 additions
and
60 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-out/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
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
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
...s/signed-out/nutrition-tracker/update-consumption-form/update-consumption-form.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 UpdateConsumptionFormContainer = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
margin: 0% 2% 0% 2%; | ||
padding: 2%; | ||
` | ||
|
||
export const ConsumptionFormButtonContainer = styled.div` | ||
padding: 2%; | ||
` |