rezept line adaption

This commit is contained in:
Felix Diemar 2020-06-10 02:33:14 +02:00
parent 1855f50d0d
commit ee1a175c5c
2 changed files with 31 additions and 4 deletions

View File

@ -180,6 +180,21 @@ p {
flex-direction: row;
}
.resultsRezept {
display: flex;
flex-direction: row;
width: 100%;
}
.resultsRezept li {
list-style: none;
padding: 10px 15px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.results li {
list-style: none;
padding: 10px 15px;
@ -340,7 +355,10 @@ p {
font-style: italic;
white-space: pre-wrap;
text-align: center;
flex: auto;
list-style-type: none;
}
.rezept .detail h3 h4{
text-align: center;
}
@ -680,6 +698,15 @@ p {
justify-content: space-between;
flex-wrap: wrap;
align-content: space-around;
text-align: center;
align-items: center;
}
.kategorie.resultsRezept
{
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.kategorie h3 {

View File

@ -6,10 +6,10 @@
<Kategorie @titel={{"Pasta"}}>
<div class="rentals">
<ul class="results">
<ul class="resultsRezept">
{{#each @model as |rezept|}}
{{#if (compare rezept.kategorie '===' 'Pasta')}}
<li><Rezept class="detail" @rezept={{rezept}} /></li>
<li><Rezept @rezept={{rezept}} /></li>
{{/if}}
{{/each}}
</ul>