Add custom style

Product: apryse doc(@pdftron/webviewer)

Product Version: 11.1.1

i am using webviewer 11.1.1 at angular project i want to change the color of button i try to add css on style.scss file but it is not reflecting. for example this image save and cancel button is hidden for that i want at add scroll. i have added style like this
.modal-container .wrapper {
overflow-y: auto !important;
} but this is not reflecting and also want to change the color of save button where i can add the style to reflect this changes to UI

1 Like

Hi there

To use CSS in your angular project, please follow the guide:

You can then force a scroll bar on the save-as modal with:

.modal-container .wrapper {
    overflow-y: scroll !important;
}

To change the color of the button, you can follow the same steps, i.e.

.App .SaveModal .modal-container .footer button {
    background: red !important;
}

best regards,
Kevin Kim

2 Likes