Skip to content

Commit

Permalink
Update People.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoriginal committed Feb 11, 2021
1 parent 282e96c commit 7fd5726
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/People.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</v-container>
<!-- /Nothing found -->
<!-- Container -->
<v-container class="card-grid mb-5 pb-3 pt-2" v-else>
<v-container class="card-grid mb-5 pb-3 pt-2 d-flex overflow-x-mobile" v-else>
<v-flex
xs12 sm6 md3 lg2 xl2
v-for="person in this.filterPeople(search, filter, programs, sort)"
Expand Down Expand Up @@ -90,6 +90,10 @@

<style scoped>
.overflow-x-mobile {
overflow-x: scroll;
}
.light-border-bottom {
border-bottom: 1px solid #eaeaea;
border-radius: 0px;
Expand Down

1 comment on commit 7fd5726

@CodingCarlos
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No entiendo cuál es el objetivo de este commit, pero rompe el layout en todas las versiones menos xs, y añade visible una barra de scroll horizontal en la parte inferior de la lista de tarjetas.

Lo voy a revertir para poder desplegar, y luego vemos cómo hacemos lo que estuviésemos intentando aquí @ivoriginal

Please sign in to comment.