Skip to content

Commit 90f3c85

Browse files
committed
Merge branch 'main' into develop
2 parents 8cd6df8 + 2a58a30 commit 90f3c85

File tree

19 files changed

+98
-53
lines changed

19 files changed

+98
-53
lines changed

argilla-frontend/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ These are the section headers that we use:
1616

1717
## [Unreleased]()
1818

19+
## [2.5.0](https://github.com/argilla-io/argilla/compare/v2.4.1...v2.5.0)
20+
1921
### Added
2022

2123
- Add new dataset list page ([#5684](https://github.com/argilla-io/argilla/pull/5684))

argilla-frontend/components/features/annotation/container/questions/form/multi-label/MultiLabel.component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ export default {
4545
.wrapper {
4646
display: flex;
4747
flex-direction: column;
48-
gap: $base-space;
48+
gap: $base-space * 1.5;
4949
}
5050
</style>

argilla-frontend/components/features/annotation/container/questions/form/ranking/Ranking.component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ export default {
5252
.wrapper {
5353
display: flex;
5454
flex-direction: column;
55-
gap: $base-space;
55+
gap: $base-space * 1.5;
5656
}
5757
</style>

argilla-frontend/components/features/annotation/container/questions/form/rating/Rating.component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ export default {
4343
.wrapper {
4444
display: flex;
4545
flex-direction: column;
46-
gap: $base-space;
46+
gap: $base-space * 1.5;
4747
}
4848
</style>

argilla-frontend/components/features/annotation/container/questions/form/single-label/SingleLabel.component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ export default {
4848
.wrapper {
4949
display: flex;
5050
flex-direction: column;
51-
gap: $base-space;
51+
gap: $base-space * 1.5;
5252
}
5353
</style>

argilla-frontend/components/features/annotation/container/questions/form/span/SpanComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export default {
7676
.wrapper {
7777
display: flex;
7878
flex-direction: column;
79-
gap: $base-space;
79+
gap: $base-space * 1.5;
8080
}
8181
.question {
8282
&__warning {

argilla-frontend/components/features/annotation/container/questions/form/text-area/TextArea.component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ export default {
7878
.wrapper {
7979
display: flex;
8080
flex-direction: column;
81-
gap: $base-space;
81+
gap: $base-space * 1.5;
8282
}
8383
</style>

argilla-frontend/components/features/annotation/guidelines/AnnotationGuidelines.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<MarkdownRenderer
3-
class="--body3"
3+
class="annotation-guidelines --body3"
44
:markdown="guidelines || $t('noAnnotationGuidelines')"
55
/>
66
</template>
@@ -13,3 +13,9 @@ export default {
1313
},
1414
};
1515
</script>
16+
17+
<style lang="scss" scoped>
18+
.annotation-guidelines {
19+
padding-inline: $base-space * 2;
20+
}
21+
</style>

argilla-frontend/components/features/user-settings/UserSettingsLanguage.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ label {
5353
&:hover {
5454
transition: color 0.3s ease;
5555
color: var(--fg-primary);
56+
cursor: pointer;
5657
}
5758
}
5859
input:checked + label {

argilla-frontend/components/features/user-settings/UserSettingsTheme.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ label {
6262
&:hover {
6363
transition: color 0.3s ease;
6464
color: var(--fg-primary);
65+
cursor: pointer;
6566
.svg-icon {
6667
transition: fill 0.3s ease;
6768
fill: var(--fg-primary);

0 commit comments

Comments
 (0)