-
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.
- Loading branch information
1 parent
bf6bc30
commit 0b6b50b
Showing
46 changed files
with
636 additions
and
176 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
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 |
---|---|---|
|
@@ -10,4 +10,6 @@ ion-icon { | |
|
||
.nutrition-tracker-app-bar { | ||
cursor: pointer; | ||
z-index: 9999; | ||
overflow: "hidden"; | ||
} |
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
22 changes: 22 additions & 0 deletions
22
...gned-in/dashboard/calories-burned/schedule/schedule-calendar/schedule-calendar.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,22 @@ | ||
import styled from "styled-components"; | ||
import { COLOR_CODES } from "../../../../../../utils/constants/shared.constants"; | ||
|
||
export const CalendarTodoList = styled.ul` | ||
text-align: left; | ||
padding: 0; | ||
list-style: none; | ||
li { | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
} | ||
` | ||
|
||
export const CaloriesBurnedCalendarContainer = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 1%; | ||
background-color: ${COLOR_CODES.general["0"]}; | ||
` |
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
8 changes: 8 additions & 0 deletions
8
...gned-in/dashboard/calories-burned/schedule/schedule-day-info/schedule-day-info.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,8 @@ | ||
import styled from "styled-components"; | ||
|
||
export const CaloriesBurnedScheduleDayInfo = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 2% 2% 2% 2%; | ||
` |
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
22 changes: 22 additions & 0 deletions
22
...nents/signed-in/dashboard/fitness/schedule/schedule-calendar/schedule-calendar.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,22 @@ | ||
import styled from "styled-components"; | ||
import { COLOR_CODES } from "../../../../../../utils/constants/shared.constants"; | ||
|
||
export const CalendarTodoList = styled.ul` | ||
text-align: left; | ||
padding: 0; | ||
list-style: none; | ||
li { | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
} | ||
` | ||
|
||
export const FitnessScheduleCalendarContainer = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 1%; | ||
background-color: ${COLOR_CODES.general["0"]}; | ||
` |
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
12 changes: 12 additions & 0 deletions
12
...nents/signed-in/dashboard/fitness/schedule/schedule-day-info/schedule-day-info.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,12 @@ | ||
import styled from "styled-components"; | ||
|
||
export const FitnessScheduleDayInfoContainer = styled.div` | ||
margin: 0% 2% 2% 2%; | ||
` | ||
|
||
export const FitnessScheduleDayInfo = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 1% 1% 1% 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
22 changes: 22 additions & 0 deletions
22
...ed-in/dashboard/nutrition-tracker/schedule/schedule-calendar/schedule-calendar.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,22 @@ | ||
import styled from "styled-components"; | ||
import { COLOR_CODES } from "../../../../../../utils/constants/shared.constants"; | ||
|
||
export const CalendarTodoList = styled.ul` | ||
text-align: left; | ||
padding: 0; | ||
list-style: none; | ||
li { | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
} | ||
` | ||
|
||
export const NutritionTrackerCalendarContainer = styled.div` | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 1%; | ||
background-color: ${COLOR_CODES.general["0"]}; | ||
` |
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
8 changes: 8 additions & 0 deletions
8
...ed-in/dashboard/nutrition-tracker/schedule/schedule-day-info/schedule-day-info.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,8 @@ | ||
import styled from "styled-components"; | ||
|
||
export const NutritionTrackerScheduleDayInfo = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 2% 2% 2% 2%; | ||
` |
Oops, something went wrong.