Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First test #36

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2.1
orbs:
welcome: circleci/[email protected]
workflows:
welcome:
jobs:
- welcome/run
1 change: 1 addition & 0 deletions src/components/FoodTile/FoodTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const styles = (theme: CustomTheme): Record<ClassNames, CSSProperties> => ({
},
name: {
color: "black",
fontFamily: "Arial Narrow, sans-serif",
fontWeight: "bold"
},
controls: {
Expand Down
2 changes: 1 addition & 1 deletion src/style/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const theme: CustomTheme = createMuiTheme({
"transparent linear-gradient(101deg, #F78E0D 0%, #F9C41C 100%) 0% 0% no-repeat padding-box"
},
contained: {
color: "white",
color: "blue",
boxShadow: "0px 2px 20px #00000029"
},
label: {
Expand Down
Loading