You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm overwriting my primary color $primary sass variable like it's defined in the documentation of http://bulma.io/documentation/overview/customize/ using the node installed version of bulma and vue-bulma-tooltip
// Import the initial variables
@import "node_modules/bulma//sass/utilities/initial-variables";
// Set your own initial variables
$primary: #72d0eb
// Import the rest of Bulma
@import "../bulma"
The color change will be effective on my own Elements and Components like e.g. a button.
<button class="button is-primary">
But if I want to have the tooltip the same color as the button by using tooltip--primary the tooltip will have the original primary color
I was wondering if this is because you import ~bulma/sass/utilities/variables in the style.scssof the tooltip component instead of ~bulma/sass/utilities/initial-variables.
I'm overwriting my primary color
$primary
sass variable like it's defined in the documentation of http://bulma.io/documentation/overview/customize/ using the node installed version ofbulma
andvue-bulma-tooltip
The color change will be effective on my own Elements and Components like e.g. a button.
But if I want to have the tooltip the same color as the button by using
tooltip--primary
the tooltip will have the original primary colorI was wondering if this is because you import
~bulma/sass/utilities/variables
in thestyle.scss
of the tooltip component instead of~bulma/sass/utilities/initial-variables
.I also asked @jgthms of bulma framework about the purpose of this file:
jgthms/bulma#769
The text was updated successfully, but these errors were encountered: