mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
styling UI
This commit is contained in:
parent
c23636c249
commit
b9067c85bd
4 changed files with 12 additions and 4 deletions
|
|
@ -56,6 +56,7 @@ Free meal planner for cooks short on ideas! (like me …)
|
|||
- Recipes in Video
|
||||
- Get a full menu (Starter, Main, Dessert + Cocktail)
|
||||
- Send a daily suggestion to newsletter
|
||||
- History
|
||||
|
||||
## Supports
|
||||
|
||||
|
|
@ -83,5 +84,5 @@ Free meal planner for cooks short on ideas! (like me …)
|
|||
|
||||
- put a preloader
|
||||
- visual styling
|
||||
- route bad request to notFOund (exple: /categories/string)
|
||||
- route bad request to notFOund (exple: /categories/string, when search results is null)
|
||||
- add sidenav on mobile
|
||||
|
|
|
|||
|
|
@ -18,10 +18,11 @@ const CategoryEntry = props => {
|
|||
<div className="card horizontal">
|
||||
<div className="card-image">
|
||||
<img src={strCategoryThumb} alt={strCategory} />
|
||||
<span className="card-title red-text">{strCategory}</span>
|
||||
{/* <span className="card-title red-text">{strCategory}</span> */}
|
||||
</div>
|
||||
<div className="card-stacked">
|
||||
<div className="card-content black-text">
|
||||
<h4>{strCategory}</h4>
|
||||
<p>{strCategoryDescription}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -13,7 +13,10 @@ const SearchResult = props => {
|
|||
<div className="card ">
|
||||
<div className="card-image">
|
||||
<img src={strMealThumb} alt={strMeal} />
|
||||
<span className="card-title ">{strMeal}</span>
|
||||
{/* <span className="card-title ">{strMeal}</span> */}
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<h4>{strMeal}</h4>
|
||||
</div>
|
||||
{/* <div className="card-stacked">
|
||||
<div className="card-content black-text">
|
||||
|
|
|
|||
|
|
@ -36,7 +36,10 @@ const CategoryPage = props => {
|
|||
<div className="card ">
|
||||
<div className="card-image">
|
||||
<img src={meal.strMealThumb} alt={meal.strMeal} />
|
||||
<span className="card-title">{meal.strMeal}</span>
|
||||
{/* <span className="card-title">{meal.strMeal}</span> */}
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<h4>{meal.strMeal}</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue