Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fix use of unscoped CSS (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically authored Nov 14, 2023
1 parent 5051ad9 commit 74e6caf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/components/base/MarkdownEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ function openVideoModal() {
}
</script>
<style lang="scss">
<style lang="scss" scoped>
.file-input {
width: 100%;
padding: 1.5rem;
Expand Down
2 changes: 1 addition & 1 deletion lib/components/base/Pagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function switchPage(newPage: number) {
}
</script>

<style scoped lang="scss">
<style lang="scss" scoped>
.paginates {
display: flex;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/components/base/Promotion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const props = withDefaults(
const target = computed(() => (props.external ? '_blank' : '_self'))
</script>

<style lang="scss">
<style lang="scss" scoped>
.GBBNWLJVGRHFLYVGSZKSSKNTHFYXHMBD {
position: relative;
margin-bottom: var(--gap-md);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "omorphia",
"type": "module",
"version": "0.6.6",
"version": "0.6.7",
"files": [
"dist",
"locales"
Expand Down

0 comments on commit 74e6caf

Please sign in to comment.