Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Questions/Question.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@

contentValid: {
type: Boolean,
default: true,

Check warning on line 251 in src/components/Questions/Question.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Boolean prop should only be defaulted to false
},

warningInvalid: {
Expand Down Expand Up @@ -400,7 +400,7 @@
</script>

<style lang="scss" scoped>
@import '../../scssmixins/markdownOutput';
@use '../../scssmixins/markdownOutput' as *;

.question {
position: relative;
Expand Down
6 changes: 3 additions & 3 deletions src/components/SidebarTabs/SettingsSidebarTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,8 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../scssmixins/markdownOutput' as *;

#expiresDatetimePicker {
width: calc(100% - var(--default-clickable-area));
}
Expand Down Expand Up @@ -536,7 +538,7 @@ export default {
}

&__output {
@import '../../scssmixins/markdownOutput';
@include markdown-output;

padding: 12px;
margin-block: 3px;
Expand All @@ -546,8 +548,6 @@ export default {
&:hover {
border-color: var(--color-primary-element);
}

@include markdown-output;
}
}
</style>
2 changes: 0 additions & 2 deletions src/views/Create.vue
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,6 @@ export default {
</style>

<style lang="scss" scoped>
@import '../scssmixins/markdownOutput';

.emptycontent {
display: flex;
height: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/views/Submit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ export default {
</script>

<style lang="scss" scoped>
@import '../scssmixins/markdownOutput';
@use '../scssmixins/markdownOutput' as *;

.forms-emptycontent {
height: 100%;
Expand Down
Loading