Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
fix(dialogs): all dialogs should work better on mobile resolutions
Browse files Browse the repository at this point in the history
ref #54
  • Loading branch information
seiyria committed Oct 14, 2015
1 parent 00de65d commit d4782ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/jade/partials/dialogs/addevent.jade
Expand Up @@ -10,7 +10,7 @@ script(type="text/ng-template", id="/dialog/addevent")
span  All fields are required.

form(name="item.form", ng-submit="addItem()")
.input-row(layout="row")
.input-row(layout-gt-sm="row", layout-sm="column", )
md-input-container(flex)
label Name
input(name="name", ng-model="item.name", md-maxlength="30", required)
Expand Down
2 changes: 1 addition & 1 deletion src/jade/partials/dialogs/adduser.jade
Expand Up @@ -11,7 +11,7 @@ script(type="text/ng-template", id="/dialog/adduser")
span  All fields are required.

form(name="item.form", ng-submit="addItem()")
.input-row(layout="row", ng-if="!viewOnly")
.input-row(layout-gt-sm="row", layout-sm="column", ng-if="!viewOnly")
md-input-container(flex)
label Name
input(name="name", ng-model="item.name", md-maxlength="30", required)
Expand Down

0 comments on commit d4782ec

Please sign in to comment.