I'm looking for a way to create a custom mixin less function that would act as follows:
.my-class {
... .FirstLetterUppercase();
}
And that would transpile to:
.my-class {
...
}
.my-class:first-letter {
text-transform: uppercase;
}
Is that possible with less ?