fix: update deprecated deep selector syntax (#20807)

`>>>` to `:deep`
This commit is contained in:
Faris Ansari 2023-04-21 17:43:41 +05:30 committed by GitHub
parent e06b6b31f3
commit 838919eb42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -130,7 +130,7 @@ onMounted(() => {
margin-top: auto;
margin-bottom: 1.2rem;
}
.preview-control >>> .form-control {
.preview-control :deep(.form-control) {
background: var(--control-bg-on-gray);
}
</style>

View file

@ -332,7 +332,7 @@ watch(print_format, () => (store.dirty.value = true), { deep: true });
margin-bottom: 0;
}
.control-font >>> .frappe-control[data-fieldname="font"] label {
.control-font :deep(.frappe-control[data-fieldname="font"] label) {
display: none;
}
</style>