Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 6b145a6

Browse files
VividLemonadiantek
andauthored
Adiantek patch 1 (bootstrap-vue-next#1373)
* fix(BOverlay): add null as an option to BOverlay * perf(BModal): 0px blur on chrome causes FPS drop --------- Co-authored-by: Adrian Antkowiak <[email protected]>
1 parent 7bc0135 commit 6b145a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/bootstrap-vue-next/src/components/BModal.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
no-spinner
9191
fixed
9292
no-wrap
93-
blur="0px"
93+
:blur="null"
9494
@click="hide('backdrop')"
9595
/>
9696
</slot>

packages/bootstrap-vue-next/src/components/BOverlay/BOverlay.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import BSpinner from '../BSpinner.vue'
3838
const props = withDefaults(
3939
defineProps<{
4040
bgColor?: string
41-
blur?: string
41+
blur?: string | null
4242
fixed?: Booleanish
4343
noCenter?: Booleanish
4444
noFade?: Booleanish

0 commit comments

Comments
 (0)