Skip to content

Commit

Permalink
Merge pull request #216 from lblod/bugfix/calendar-popup
Browse files Browse the repository at this point in the history
Fix calendar popup overflow
  • Loading branch information
nvdk authored Nov 18, 2021
2 parents 504f573 + 2792431 commit c9fb78d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/components/date-time-picker.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="au-o-grid au-o-grid--small">
<div class="au-o-grid__item au-u-2-6">
<div class="au-o-grid au-o-grid--tiny">
<div class="au-o-grid__item au-u-3-5">
{{#let (unique-id) as |id|}}
<AuLabel for={{id}}>{{t "dateTimePicker.date"}}</AuLabel>
<AuDatePicker
Expand All @@ -10,13 +10,13 @@
/>
{{/let}}
</div>
<div class="au-o-grid__item au-u-2-6 au-u-1-6@medium">
<div class="au-o-grid__item au-u-1-5 au-u-1-6@small">
{{#let (unique-id) as |id|}}
<AuLabel for={{id}}>{{t "dateTimePicker.hours"}}</AuLabel>
<Input class="au-c-input au-c-input--block" type='number' @input={{fn this.onChangeTime 'hours'}} @value={{this.hours}} max={{24}} id={{id}} />
{{/let}}
</div>
<div class="au-o-grid__item au-u-2-6 au-u-1-6@medium">
<div class="au-o-grid__item au-u-1-5 au-u-1-6@small">
{{#let (unique-id) as |id|}}
<AuLabel for={{id}}>{{t "dateTimePicker.minutes"}}</AuLabel>
<Input class="au-c-input au-c-input--block" type='number' @input={{fn this.onChangeTime 'minutes'}} @value={{this.minutes}} max={{60}} id={{id}} />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"devDependencies": {
"@appuniversum/appuniversum": "0.1.5",
"@appuniversum/ember-appuniversum": "0.6.4",
"@appuniversum/ember-appuniversum": "0.6.5",
"@ember/optional-features": "^2.0.0",
"@ember/render-modifiers": "^1.0.2",
"@ember/test-helpers": "^2.1.4",
Expand Down

0 comments on commit c9fb78d

Please sign in to comment.