Skip to content

Commit

Permalink
fix: fix small issues (#5230)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gbacc authored Mar 18, 2024
1 parent 1317466 commit 6a69c4c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/lucky-spiders-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@talend/react-forms": patch
---

Fix UI-Form display on TextModeArrayTemplate to have some spacing between templates
5 changes: 5 additions & 0 deletions .changeset/wet-badgers-turn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@talend/react-components": patch
---

Fix Drawer z-index that could prevent headerbar to display sub-menu
2 changes: 0 additions & 2 deletions packages/components/src/Drawer/Drawer.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ $tc-drawer-header-background: tokens.$coral-color-neutral-background !default;
$tc-drawer-header-border: tokens.$coral-border-s-solid tokens.$coral-color-neutral-border-weak !default;
$tc-drawer-tabs-background: tokens.$coral-color-accent-background-weak !default;
$tc-action-bar-background-color: tokens.$coral-color-neutral-background-medium !default;
$tc-drawer-z-index: tokens.$coral-elevation-layer-standard-front !default;

.tc-drawer {
pointer-events: all;
Expand All @@ -19,7 +18,6 @@ $tc-drawer-z-index: tokens.$coral-elevation-layer-standard-front !default;
right: 0;
bottom: 0;
width: tokens.$coral-sizing-maximal;
z-index: $tc-drawer-z-index;
}

@media (min-width: 992px) and (max-width: 1199px) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
@use '~@talend/design-tokens/lib/tokens';

.tf-array-text-mode {
ol {
list-style: none;
display: flex;
flex-direction: column;
gap: tokens.$coral-spacing-xxs;
}
}

0 comments on commit 6a69c4c

Please sign in to comment.