-
Notifications
You must be signed in to change notification settings - Fork 130
Open
Labels
Description
The fluid() function:
.foo {
font-size: ms-fluid(1@320px, 3@480px);
}Being the syntax:
ms-fluid(STEP@BREAKPOINT, STEP@BREAKPOINT)
Question: Is it possible to have infinite steps and breakpoints? Should we have them? Would that be useful?
We could get the value using clamp()
Even better, if we could have easing functions:
.bar {
font-size: ms-fluid(1@320px, 3@480px, 'ease-in');
}Being the default "linear".
Attention: It have been really hard to find how to convert the Bézier cubic notations to mathematical functions.
Reactions are currently unavailable