Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You can see it in action here products.bizzomate.com

...

The Chat widget uses it’s own default utilizes CSS properties for styling, which are defined within the _variables.scss file of the module. If you want to make adjustments to your wish to adjust the styling to fit suit your own custom needs, this can be done by adding an exclusion to your theme; for example.

Code Block
$exclude-chat-variables: true;

Then duplicate you can either override the variables in this file or exclude the variables file altogether. This allows you to copy and paste the _variables.scss file , place it into an _extended module and make adjustments when neseccary. Using this method; when there is an update of the BizzomateChat moduleto another part of your application and modify everything without altering the main module. By using this method, when the BizzomateChat module is updated, your custom styling will not be overwritten.

You can achieve this by setting the following SCSS variable in your exclusion-variables.scss file within your theme folder.

Code Block
$exclude-chat-variables: true;

...