если пишешь на флексах то нужно свойство flex-wrap https://developer.mozilla.org/ru/docs/Web/CSS/flex-wrap
а если не флексы?
Установить фиксированую ширину наверно
Вот сам код: <div v-show="filtersExist" id="asset-filter-buttons"> <label v-show="assetFilter.locations.length > 0" class="badge badge-info badge-filter p-1 mr-2" data-testid="asset-data-context-locations" > <i class="fal fa-home ml-1"></i> <div v-for="filter in assetFilter.locations" class="btn-group ml-1" :key="filter.name"> <span v-if="!canRemoveFilters" class="btn btn-filter px-2 py-0">{{ filter.name }}</span> <b-button v-else type="button" class="btn btn-filter px-2 py-0" @click="removeLocation(filter)" > <i class="fal fa-times mr-2"></i> {{ filter.name }} </b-button> </div> </label> </div>
Обсуждают сегодня