Skip to content

Commit

Permalink
update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
leiyre committed Nov 28, 2024
1 parent 5e06675 commit 6131075
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ export default {
.wrapper {
display: flex;
flex-direction: column;
gap: $base-space;
gap: $base-space * 1.5;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ export default {
.wrapper {
display: flex;
flex-direction: column;
gap: $base-space;
gap: $base-space * 1.5;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ export default {
.wrapper {
display: flex;
flex-direction: column;
gap: $base-space;
gap: $base-space * 1.5;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ export default {
.wrapper {
display: flex;
flex-direction: column;
gap: $base-space;
gap: $base-space * 1.5;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default {
.wrapper {
display: flex;
flex-direction: column;
gap: $base-space;
gap: $base-space * 1.5;
}
.question {
&__warning {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ export default {
.wrapper {
display: flex;
flex-direction: column;
gap: $base-space;
gap: $base-space * 1.5;
}
</style>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<MarkdownRenderer
class="--body3"
class="annotation-guidelines --body3"
:markdown="guidelines || $t('noAnnotationGuidelines')"
/>
</template>
Expand All @@ -13,3 +13,9 @@ export default {
},
};
</script>

<style lang="scss" scoped>
.annotation-guidelines {
padding-inline: $base-space *2

Check failure on line 19 in argilla-frontend/components/features/annotation/guidelines/AnnotationGuidelines.vue

View workflow job for this annotation

GitHub Actions / Build argilla-frontend

Replace `2` with `·2;`
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ $shadow-hover: rgba(0, 0, 0, 0.05) 0px 1px 4px 0px,
font-weight: 500;
min-height: $base-space * 5;
@include font-size(18px);
word-break: break-all;
word-break: break-word;
transition: color 0.3s ease;
}
&__workspace {
Expand Down

0 comments on commit 6131075

Please sign in to comment.