Skip to content
Snippets Groups Projects
Commit 0b17f829 authored by Cyrille Bollu's avatar Cyrille Bollu Committed by backportbot[bot]
Browse files

Fixes a regression where the MessageSource modal wasn't scrollable anymore

parent 164ab600
No related branches found
Tags v3.4.0-rc.1
No related merge requests found
......@@ -308,3 +308,16 @@ export default {
},
}
</script>
<style lang="scss" scoped>
.source-modal {
::v-deep .modal-container {
height: 800px;
}
.source-modal-content {
width: 100%;
height: 100%;
overflow-y: scroll !important;
}
}
</style>
......@@ -311,17 +311,6 @@ export default {
.left {
flex-grow: 1;
}
.source-modal {
::v-deep .modal-container {
height: 800px;
}
.source-modal-content {
width: 100%;
height: 100%;
overflow-y: scroll;
}
}
.icon-important {
::v-deep path {
fill: #ffcc00;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment