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.
- spoon
-
- Posts: 96
- Joined: Thu Oct 26, 2017 9:23 am
- Pablo
- Posts: 23616
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
Re: How do I change the "font-size" text to breakpoints
See '$BREAKPOINT$ ' in the documentation of Extension Builder.
- spoon
-
- Posts: 96
- Joined: Thu Oct 26, 2017 9:23 am
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;
}
}
- Pablo
- Posts: 23616
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
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
- spoon
-
- Posts: 96
- Joined: Thu Oct 26, 2017 9:23 am
Re: How do I change the "font-size" text to breakpoints
Adaptive font-size not do?
- Pablo
- Posts: 23616
- Joined: Sun Mar 28, 2004 12:00 pm
- Location: Europe
- Contact:
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.
- spoon
-
- Posts: 96
- Joined: Thu Oct 26, 2017 9:23 am
Re: How do I change the "font-size" text to breakpoints
Maybe in the new version there will be such an opportunity. Thanks Pablo