Raphael Beer b05cc303b4
Fix: filter not preferring full matches in back +
The fuzzy filter wasn't scoring full matches
  high enough, when they weren't at the
  beginning of the name.

  Given the filter 'ger', results have been:

    - (Ger)hard Burg
    - (Ge)of(r)ey
    - Armin (Ger)lach

  with this fix the are:

    - (Ger)hard Burg
    - Armin (Ger)lach
    - (Ge)of(r)ey
2020-04-01 08:04:56 +02:00

17 lines
282 B
Vue

<template>
<div class="container">
<slot />
</div>
</template>
<style lang="scss">
@import '../node_modules/@human-connection/styleguide/dist/system.css';
@import '~/assets/styles/main.scss';
.container {
padding: 5rem;
max-width: 1200px;
margin: 0 auto;
}
</style>