summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
authorMarco <marcoambrosini@icloud.com>2023-05-01 19:35:28 +0200
committerMaksim Sukharev <antreesy.web@gmail.com>2023-05-03 14:51:13 +0200
commit2b35d2d0d06a011244e9d3a36c2d8bc27dd6d44d (patch)
tree96cdd405e6bd9b2db5c580cd1595bd53c04b8825 /src/App.vue
parent76eaaee883331b57d37c9cd4a09696c94054a8e0 (diff)
Use deep selector
Signed-off-by: Marco <marcoambrosini@icloud.com>
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/App.vue b/src/App.vue
index 68dbbeeea..c139f1255 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -665,11 +665,11 @@ export default {
.content {
&.in-call {
- ::v-deep .app-content {
+ :deep(.app-content) {
background-color: transparent;
}
- &:hover ::v-deep .app-navigation-toggle {
+ &:hover :deep(.app-navigation-toggle) {
background-color: rgba(0, 0, 0, .1) !important;
&:hover {
@@ -677,7 +677,7 @@ export default {
}
}
- ::v-deep .app-navigation-toggle {
+ :deep(.app-navigation-toggle) {
/* Force white handle when inside a call */
color: #D8D8D8;
@@ -691,7 +691,7 @@ export default {
&:fullscreen {
padding-top: 0;
- ::v-deep .app-sidebar {
+ :deep(.app-sidebar) {
height: 100vh !important;
}
}