Kavrat
Kavrat

Reputation: 87

Fabric UI Modal custom sizing

Please help to customize Fabric UI Modal window. I've tried to minimize height and remove vertical scrolling. Tried to work with containerClassName, className, scrollableContentClassName - but none of them work.

In scss file:

.modal {
    overflow-y: "unset";
    flex-grow: 1;
    height: 80vh
}

Upvotes: 2

Views: 1022

Answers (1)

Amos
Amos

Reputation: 2091

Try to use this class ms-Modal-scrollableContent. enter image description here

Upvotes: 1

Related Questions