Commit 4ca541382d852b1d21f97f9ad0b045b667729920

Authored by Paul Wallace
1 parent 49613e9eff
Exists in master

Update UI for travel selection buttons

Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff

views/pages/index.ejs View file @ 4ca5413
... ... @@ -32,17 +32,17 @@
32 32 This contains a row that holds buttons of type button. Buttons are highlighted upon selection.
33 33 -->
34 34 <div class="row">
35   - <button type="button" class="btn-default col-xs-4">
  35 + <button type="button" class="btn-default img-thumbnail col-xs-4">
36 36 <img class="img-responsive" src="images/pedestrian-walking.svg" alt="Walking Option" width="40" height="40">
37 37 </button>
38 38  
39 39 <!-- Second travel button, driving -->
40   - <button type="button" class="btn-default col-xs-4">
  40 + <button type="button" class="btn-default img-thumbnail col-xs-4">
41 41 <img class="img-responsive" src="images/car-compact.svg" alt="Walking Option" width="40" height="40">
42 42 </button>
43 43  
44 44 <!-- Third travel button, bus -->
45   - <button type="button" class="btn-default col-xs-4" onclick="javascript:autofill();">
  45 + <button type="button" class="btn-default img-thumbnail col-xs-4" onclick="javascript:autofill();">
46 46 <img class="img-responsive" src="images/bus.svg" alt="Walking Option" width="40" height="40">
47 47 </button>
48 48 </div>