Skip to content

Commit

Permalink
fix: Do not mess with all NcModal styles - scope styles to wizard
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux authored and backportbot[bot] committed Apr 13, 2024
1 parent 4bbce26 commit 8d85ddb
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/views/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ watchEffect(() => {
* Global styles to override vue component styles of the modal
*/
.modal-wrapper {
.first-run-wizard .modal-wrapper {
.modal-container {
overflow: hidden;
Expand All @@ -126,13 +126,15 @@ watchEffect(() => {
}
@media only screen and (max-width: 512px) {
.modal-wrapper .modal-container {
height: 100dvh;
top: 0;
}
.first-run-wizard {
.modal-wrapper .modal-container {
height: 100dvh;
top: 0;
}
.modal-header {
pointer-events: none;
.modal-header {
pointer-events: none;
}
}
}
</style>

0 comments on commit 8d85ddb

Please sign in to comment.