We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UpWindowAngular
Implement a feature in the UpWindowAngular component to allow the window to be displayed in grayscale mode.
Input Property:
@Input()
@Input() grayscale: boolean = false;
CSS Styling:
grayscale
&.grayscale { backdrop-filter: grayscale(1); }
Update Component Logic:
openWindowExample
true
The text was updated successfully, but these errors were encountered:
lucasferreiralimax
Successfully merging a pull request may close this issue.
Implement a feature in the
UpWindowAngular
component to allow the window to be displayed in grayscale mode.Input Property:
@Input()
property to theUpWindowAngular
component:CSS Styling:
grayscale
property is true:Update Component Logic:
openWindowExample
method to set this new state variable.Acceptance Criteria
grayscale
property can be passed as an input to theUpWindowAngular
component.grayscale
is set totrue
.Additional Notes
The text was updated successfully, but these errors were encountered: