User Tour border not sized correctly

Re: User Tour border not sized correctly

by Wendell Mayes -
Number of replies: 2
Below are a few relevant links from the Moove tracker mentioned by Jon:

1. https://github.com/willianmano/moodle-theme_moove/issues/279
2. https://github.com/willianmano/moodle-theme_moove/issues/186

The changes suggested in #2 resolved the frame issues on my demo site.
In reply to Wendell Mayes

Re: User Tour border not sized correctly

by Ruan Combrink -

Thanks for the feedback.

I got the border issue fixed.

I wasn't aware that there is a support page on GitHub so thank you for that as well.

In reply to Ruan Combrink

Re: User Tour border not sized correctly

by Ruan Combrink -
So just for future reference. I had to change the scss file located at .../themes/moove/scss/moove/_responsive.scss

The max-width had to be changed from the default 50% to 100% as follows:

@media (min-width: 576px) {
.modal-dialog {
max-width: 100%;
}
}

Thanks again for the assistance.