Flora
Flora

Reputation: 563

bootstrap-vue: import specific css

I want to use a tooltip from the bootstrap-vue. When I add

import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'

to get the tooltip style, then the whole view of my application is changing. Is it possible to import css only to my tooltip?

Upvotes: 7

Views: 1568

Answers (1)

waghcwb
waghcwb

Reputation: 397

You can import the tooltip component from the src folder, like this

import 'bootstrap-vue/src/components/tooltip'

Upvotes: 1

Related Questions