Hello Pablo, tell me, in the Extension Builder text I put font-size, but this font-size does not react to BREAKPOINT in the WWB program, that is, the text size is the same for all breakpoints.
How can I change the font-size on each breakpoint?
How do I change the "font-size" text to breakpoints
Forum rules
This forum section can be used to submit suggestions for Extension Builder.
Note that this section is not monitored for support.
This forum section can be used to submit suggestions for Extension Builder.
Note that this section is not monitored for support.
Re: How do I change the "font-size" text to breakpoints
See '$BREAKPOINT$ ' in the documentation of Extension Builder.
Re: How do I change the "font-size" text to breakpoints
I already use $BREAKPOINT$ but the size of the text on breakpoints does not change. If I change the font-size to breakpoint, then both default and other breakpoints also change.
Пример
Code: Select all
h3{
font-size: $font$px;
color: $color$;
}
@media $BREAKPOINT$ {
h3{
font-size: $font$px;
}
}
Re: How do I change the "font-size" text to breakpoints
I'm sorry, custom properties are not responsive.
This only works for built-in variables like $WIDTH$, $LEFT$ etc
This only works for built-in variables like $WIDTH$, $LEFT$ etc
Re: How do I change the "font-size" text to breakpoints
Adaptive font-size not do?
Re: How do I change the "font-size" text to breakpoints
The software does not have any knowledge about your extension or code, so it cannot automatically generated responsive code for it.
Re: How do I change the "font-size" text to breakpoints
Maybe in the new version there will be such an opportunity. Thanks Pablo