1
0

fix: use :deep() selector instead of ::v-deep

This commit is contained in:
Dominik Pschenitschni
2021-10-20 14:33:36 +02:00
parent f496c9d678
commit 87d2b4fed3
15 changed files with 31 additions and 31 deletions

View File

@ -463,7 +463,7 @@ export default {
<style lang="scss" scoped>
.quick-actions {
// FIXME: changed position should be an option of the modal
::v-deep.modal-content {
:deep(.modal-content) {
top: 3rem;
transform: translate(-50%, 0);
}
@ -531,7 +531,7 @@ export default {
// HACK:
// FIXME:
.modal-container-smaller ::v-deep.hint-modal .modal-container {
.modal-container-smaller :deep(.hint-modal .modal-container) {
height: calc(100vh - 5rem);
}
</style>