You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Xamarin.Forms has its own selector to allow you to style any element with a base class matching the class. LessCompiler adds a space between the ^ and the class name.
Steps to recreate
Add a style like so:
^contentpage {
background-color: red;
}
Save.
Current behavior
.css:
^ contentpage {
background-color: red;
}
Expected behavior
.css:
^contentpage {
background-color: red;
}
The text was updated successfully, but these errors were encountered:
Installed product versions
Description
Xamarin.Forms has its own selector to allow you to style any element with a base class matching the class. LessCompiler adds a space between the ^ and the class name.
Steps to recreate
Add a style like so:
Save.
Current behavior
.css:
Expected behavior
.css:
The text was updated successfully, but these errors were encountered: