Skip to content

Commit

Permalink
Merge branch 'daniel/fix-group-a' of github.com:biomod2023/biomod2023…
Browse files Browse the repository at this point in the history
… into daniel/fix-group-a
  • Loading branch information
daniel-panhead committed Oct 28, 2023
2 parents 72fe742 + 722e956 commit 964ee5e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion THEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The notebook text and bubble background colors can be accessed with the `noteboo

```html
<div class="bg-notebookBg">
<p class="text-notebookText">Body</p>
<p class="text-notebookText">Body</p>
</div>
```

Expand Down
2 changes: 1 addition & 1 deletion src/components/lab-notebook/Bubble.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { ref, onMounted } from 'vue'
defineProps<{ alwaysDropdown: boolean, dark?: boolean, nested?: boolean }>()
defineProps<{ alwaysDropdown: boolean; dark?: boolean; nested?: boolean }>()
defineEmits<{ (e: 'toggleActivated', state: boolean): void }>()
const title = ref()
Expand Down
17 changes: 8 additions & 9 deletions src/components/lab-notebook/Section.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@

<script setup lang="ts">
const sectionTitleStyle = 'text-subtitle-sm lg:text-subtitle text-white mb-4'
const sectionTitleStyle = 'text-subtitle-sm lg:text-subtitle text-white mb-4'
</script>

<template>
<section>
<h3 :class="sectionTitleStyle">
<slot name="sub-title"></slot>
</h3>
<slot name="content"></slot>
</section>
</template>
<section>
<h3 :class="sectionTitleStyle">
<slot name="sub-title"></slot>
</h3>
<slot name="content"></slot>
</section>
</template>
2 changes: 1 addition & 1 deletion src/components/lab-notebook/SingleColumn.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import Bubble from '@/components/lab-notebook/Bubble.vue'
withDefaults(defineProps<{ alwaysDropdown?: boolean, dark?: boolean, nested?: boolean }>(), {
withDefaults(defineProps<{ alwaysDropdown?: boolean; dark?: boolean; nested?: boolean }>(), {
alwaysDropdown: false
})
</script>
Expand Down

0 comments on commit 964ee5e

Please sign in to comment.