Browse Source

chore(gui-v2): replace deep selector with non-deprecated version

pull/2716/head
Braks 2 years ago committed by Pranav C
parent
commit
8e1ce46f42
  1. 15
      packages/nc-gui-v2/components/general/Language.vue

15
packages/nc-gui-v2/components/general/Language.vue

@ -59,14 +59,13 @@ onMounted(() => {
</template>
<style scoped lang="scss">
::v-deep {
.nc-language-list {
min-width: 200px;
max-height: 90vh;
overflow: auto;
.v-list-item {
min-height: 30px !important;
}
:deep(.nc-language-list) {
min-width: 200px;
max-height: 90vh;
overflow: auto;
.v-list-item {
min-height: 30px !important;
}
}
</style>

Loading…
Cancel
Save