Commit cbadc847900e17c5ea9d36cef062435dae9a08af
1 parent
b0902d7eee
Exists in
master
Apliqué clases para ahicar elementos.
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
src/views/foca-busqueda-cliente-modal.html
| 1 | -<div class="modal-header"> | |
| 2 | - <h3 class="modal-title">Búsqueda de cliente</h3> | |
| 1 | +<div class="modal-header py-1"> | |
| 2 | + <h5 class="modal-title">Búsqueda de cliente</h5> | |
| 3 | 3 | </div> |
| 4 | 4 | <div class="modal-body"> |
| 5 | 5 | <form> |
| ... | ... | @@ -18,7 +18,7 @@ |
| 18 | 18 | typeahead-loading="cargandoClientes" |
| 19 | 19 | typeahead-no-results="sinResultados" |
| 20 | 20 | typeahead-on-select="seleccionar($item)" |
| 21 | - class="form-control" | |
| 21 | + class="form-control form-control-sm" | |
| 22 | 22 | foca-focus="true" |
| 23 | 23 | ng-keypress="$event.keyCode === 13 && aceptar()" |
| 24 | 24 | > |
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | </div> |
| 31 | 31 | </form> |
| 32 | 32 | </div> |
| 33 | -<div class="modal-footer"> | |
| 34 | - <button class="btn" ng-click="aceptar()">Aceptar</button> | |
| 35 | - <button class="btn" ng-click="cancelar()">Cancelar</button> | |
| 33 | +<div class="modal-footer py-1"> | |
| 34 | + <button class="btn btn-sm" ng-click="aceptar()">Aceptar</button> | |
| 35 | + <button class="btn btn-sm" ng-click="cancelar()">Cancelar</button> | |
| 36 | 36 | </div> |