Skip to content

Commit

Permalink
Merge pull request #80 from jetbrains-academy/konstantin/tasks-type-s…
Browse files Browse the repository at this point in the history
…upport

Culinary frontend improvements
  • Loading branch information
nbirillo authored Oct 16, 2024
2 parents 372f9c8 + be54f7e commit 9472c2b
Show file tree
Hide file tree
Showing 7 changed files with 200 additions and 164 deletions.
13 changes: 13 additions & 0 deletions culinaryFrontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,19 @@
background-image: url('assets/buttons/action_hover.svg');
}

.App-button-action-wide{
background-size: contain;
width: 21vmin;
height: 5vmin;
color: black;
font-weight: 600;
background-image: url('assets/buttons/action_wide.svg');
}

.App-button-action-wide:hover {
background-image: url('assets/buttons/action_wide_hover.svg');
}

.App-button-disable {
pointer-events: none;
opacity: 0.4;
Expand Down
2 changes: 1 addition & 1 deletion culinaryFrontend/src/assets/buttons/action_hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions culinaryFrontend/src/assets/buttons/action_wide.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions culinaryFrontend/src/assets/buttons/action_wide_hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion culinaryFrontend/src/components/Pot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ type PotProps = {
cucumber: number,
tomato: number,
carrot: number,
soupHue: number
soupHue: number,
spiced: boolean
}
}

Expand Down
Loading

0 comments on commit 9472c2b

Please sign in to comment.