-
I've multiple 'FluentDialog' controls within a razor page, and have CSS style applied for height/width properties. I referred this link (#207) too. I tried by adding separate class/id for my second dialog control and also added applied inline styles, but none of them worked. HTML- CSS:- fluent-dialog::dlgEdit::part(dialog) { Please help at the earliest. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This issue has been resolved by adding separate classes for each 'FluentDialog' control. Resolved - Here 'edit-enty' is the class added to one of the FluentDialog controls. |
Beta Was this translation helpful? Give feedback.
This issue has been resolved by adding separate classes for each 'FluentDialog' control.
Resolved -
::deep > fluent-dialog.edit-enty::part(control) {
--dialog-width: 500px;
--dialog-height: 340px;
padding: 2rem;
}
Here 'edit-enty' is the class added to one of the FluentDialog controls.
Hope this helps for others facing similar issues and need guidance.