Skip to content

Commit 273e174

Browse files
authored
Remove unused :v-deep styles from info modal
1 parent 5a96a25 commit 273e174

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

contentcuration/contentcuration/frontend/settings/pages/Storage/RequestForm.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@
7373
{{ translateConstant(item.license_name) }}
7474
</template>
7575
<template #description="{ item }">
76-
{{ translateConstant(`${item.license_name}_description`) }}
76+
<p class="license-description">
77+
{{ translateConstant(`${item.license_name}_description`) }}
78+
</p>
7779
<p
7880
v-if="item.license_url"
7981
class="mt-1"
@@ -517,4 +519,9 @@
517519
margin-left: 0 !important;
518520
}
519521
522+
.license-description {
523+
margin-bottom: 8px;
524+
line-height: 1.5;
525+
}
526+
520527
</style>

contentcuration/contentcuration/frontend/shared/views/InfoModal.vue

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,4 @@
6868
</script>
6969

7070

71-
<style lang="scss" scoped>
72-
73-
::v-deep p {
74-
font-size: 12pt;
75-
line-height: normal;
76-
color: var(--v-grey-darken3);
77-
}
78-
79-
</style>
71+
<style lang="scss" scoped></style>

0 commit comments

Comments
 (0)