Skip to content

Commit

Permalink
few flexbox changes, edit for accuracy
Browse files Browse the repository at this point in the history
  • Loading branch information
jlooper committed Feb 8, 2017
1 parent 4d8b5bd commit 0de978d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion app/app.css
Expand Up @@ -22,7 +22,7 @@ Button {
.container {
border-bottom-width: 1;
border-color: lightgray;
justify-content: flex-start;
align-items: flex-start;
padding: 5;
}

Expand Down Expand Up @@ -80,6 +80,7 @@ Button {
font-size: 12;
margin: 2;
margin-top: 10;
padding: 5;
}

/*.border {
Expand Down
20 changes: 10 additions & 10 deletions app/home/home.tab.html
@@ -1,36 +1,36 @@
<ScrollView>
<ScrollView>
<StackLayout>
<FlexboxLayout class="container" *ngFor="let yowl of (yowls$ | async)">

<FlexboxLayout class="column">
<Image src="~/images/k2" width="120" height="75"></Image>
</FlexboxLayout>

<FlexboxLayout class="column">
<FlexboxLayout class="row pad">

<FlexboxLayout class="row pad" justifyContent="space-between">
<Label class="bold" [text]="yowl.name"></Label>
<Label class="small" [text]="'@'+yowl.username"></Label>
<Label [text]="'fa-circle' | fonticon" class="fa grey tiny"></Label>
<Label class="small" text="{{yowl.date | date:'ss'}} m"></Label>
<Label class="small" text="{{yowl.date | date:'mm'}} m"></Label>
<Label [text]="'fa-chevron-down' | fonticon" class="fa grey small"></Label>
</FlexboxLayout>

<!-- yowl -->
<FlexboxLayout class="row">
<Label class="regular" textWrap="true" [text]="yowl.text"></Label>
</FlexboxLayout>

<!-- re-yowl -->
<!--<StackLayout class="ry" borderWidth="1" borderColor="lightgray" borderRadius="2">
<FlexboxLayout class="column ry" borderWidth="1" borderColor="lightgray" borderRadius="2">
<FlexboxLayout class="row">
<Label class="bold" text="Mrs. Fluffypants"></Label>
<Label class="small" text="@mrsfluffypants"></Label>
</FlexboxLayout>
<FlexboxLayout class="row">
<Label class="regular" textWrap="true" text="Reading your tweets is like lapping up a wonderful bowl of sweet cream. Yummmmy!!!!"></Label>
</FlexboxLayout>
</StackLayout>-->
</FlexboxLayout>

<FlexboxLayout class="row pad">
<Button width="25%" [text]="'fa-mail-reply' | fonticon" class="fa grey"></Button>
Expand Down
2 changes: 1 addition & 1 deletion app/login/login.component.ts
Expand Up @@ -62,7 +62,7 @@ export class LoginComponent {

prompt({
title: "Forgot Password",
message: "Enter the email address you used to register for Giftler to reset your password.",
message: "Enter the email address you used to register for Yowwlr to reset your password.",
defaultText: "",
okButtonText: "Ok",
cancelButtonText: "Cancel"
Expand Down

0 comments on commit 0de978d

Please sign in to comment.