Showing 1 – 2 of 2 replies
jeffersonandrade

I bought the theme some time ago, I'm […]

jeffersonandrade PURCHASED
4 years ago
Hi guys,

I bought the theme some time ago, I'm getting the following message on the console:

WARNING: `size()` has been deprecated as of v4.3.0. It will be removed entirely in v5.
on line 8 of node_modules/bootstrap/scss/mixins/_deprecate.scss, in mixin `deprecate`
from line 6 of node_modules/bootstrap/scss/mixins/_size.scss, in mixin `size`
from line 12 of src/assets/scss/inc/widgets/_profile.scss
from line 79 of src/assets/scss/app.scss
from line 40 of stdin

What should I do or change?

Thanks!
rushenn
rushenn SELLER
4 years ago
Hi there,

Current Bootstrap version no longer uses the 'size' SCSS Mixin. 'size' Mixin is used to set 'width' and 'height' CSS properties with ease. In order to fix this, you'll have to go through each and every SCSS files, look for places where 'size' mixin is in use and replace it with non-mixin properties.

e.g: if the following mixin is in use somewhere,

@include size(100px, 50px);

replace it with:

width: 100px;
height: px;

Let me know if this is work for you.

Regards.
jeffersonandrade
jeffersonandrade PURCHASED
4 years ago
Nice!

I will adjust

Thank you very much

You could generate a version of this theme for VueJS <3