mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
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
17 lines
282 B
Vue
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>
|