diff --git a/src/app/components/suggestedlist/suggestedlist.component.html b/src/app/components/suggestedlist/suggestedlist.component.html index 89f9f77..20639ff 100644 --- a/src/app/components/suggestedlist/suggestedlist.component.html +++ b/src/app/components/suggestedlist/suggestedlist.component.html @@ -1,9 +1,11 @@
+ + You have "0" suggested task. Suggested Tasks diff --git a/src/app/components/suggestedlist/suggestedlist.component.scss b/src/app/components/suggestedlist/suggestedlist.component.scss index b91d508..a574dc2 100644 --- a/src/app/components/suggestedlist/suggestedlist.component.scss +++ b/src/app/components/suggestedlist/suggestedlist.component.scss @@ -10,6 +10,8 @@ ion-content { } } + + .flex { display: flex; justify-content: space-between; @@ -358,6 +360,7 @@ ion-content { .fam1{ margin:10px 0px 10px 0px; background-color: aliceblue; + border-radius: 10px; min-height: 100px; .famleft{ background-image: url("https://www.wrenchboard.com/assets/images/apps/family/kids-waiting.jpg"); @@ -370,6 +373,11 @@ ion-content { .mid_place{ margin: auto; text-align: center; + .sug_text{ + font-weight: bolder; + font-size: 14px; + padding: 5px; + } } } diff --git a/src/app/pages/suggest/suggest.page.html b/src/app/pages/suggest/suggest.page.html index dde9697..94933b9 100644 --- a/src/app/pages/suggest/suggest.page.html +++ b/src/app/pages/suggest/suggest.page.html @@ -59,7 +59,7 @@ - + {{item.post_title}} @@ -99,7 +99,7 @@ - {{modalSeleted.title}} + {{modalSeleted.title}} {{modalSeleted.title}} @@ -107,23 +107,36 @@ {{modalSeleted.description}} + + + + Cancel + + + + Send + + + + - + + - - - + + + + + + + - - - - Cancel - - - + + + diff --git a/src/app/pages/suggest/suggest.page.scss b/src/app/pages/suggest/suggest.page.scss index 65a1d48..6070d61 100644 --- a/src/app/pages/suggest/suggest.page.scss +++ b/src/app/pages/suggest/suggest.page.scss @@ -10,6 +10,20 @@ ion-content { } } + .back_image_sug { + width: auto; + height: 130px; + margin: auto; + padding: 10px; + text-align: center; + + .back { + font-size: 25px; + color: white; + } + } + + .flex { display: flex; justify-content: space-between; @@ -401,3 +415,9 @@ ion-grid{ } } +ion-modal{ + ion-card{ + margin: 0px; + } +} + diff --git a/src/app/pages/suggest/suggest.page.ts b/src/app/pages/suggest/suggest.page.ts index e74c97e..2d1962e 100644 --- a/src/app/pages/suggest/suggest.page.ts +++ b/src/app/pages/suggest/suggest.page.ts @@ -69,9 +69,13 @@ export class SuggestPage implements OnInit { modalSeleted:any; suggestDetails(item){ this.modalSeleted = item; -this.modal.present(); + this.modal.present(); } + sendSuggestedTask(){ + + this.cancel(); + } message = 'This modal example uses triggers to automatically open a modal when the button is clicked.';