Skip to content

Commit

Permalink
show a selection icon for select forms (better UI)
Browse files Browse the repository at this point in the history
  • Loading branch information
OniriCorpe committed May 22, 2024
1 parent 62ba1ed commit ac970eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ <h1 class="h3 mb-3 fw-normal">{{ _('I want to give to %(name)s', name=name) }}</

<input type="number" min="0" max="9999" class="form-control" id="quantity" value="10" aria-label="Amount">

<select class="form-control" id="currency" style="width:40px" aria-label="{{ _('Currency') }}">
<select class="form-select" id="currency" style="width:40px" aria-label="{{ _('Currency') }}">
{% for iso, symbol in currencies %}
<option value="{{ iso }}">{{ symbol }} </option>
{% endfor %}
</select>

<select class="form-control" id="frequency" aria-label="{{ _('Frequency') }}">
<select class="form-select" id="frequency" aria-label="{{ _('Frequency') }}">
<option value="recuring"> {{ _('/ month') }} </option>
<option value="one_time"> {{ _('one time') }} </option>
</select>
Expand Down

0 comments on commit ac970eb

Please sign in to comment.