Skip to content

Commit

Permalink
Merge release/2.3.0 into develop branch (#1082)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 27, 2023
1 parent ab3f3ba commit bf2949b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@user-interviews/ui-design-system",
"version": "2.2.3",
"version": "2.3.0",
"dependencies": {
"@tiptap/core": "^2.0.3",
"@tiptap/extension-bold": "^2.0.3",
Expand Down
14 changes: 14 additions & 0 deletions src/Alert/Alert.scss
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,20 @@
}
}

.Alert-feature {
background-color: $ux-teal-100;
color: $ux-teal-800;
border: 2px solid $ux-teal-600;

.close {
@include close-action($ux-teal-600, $ux-teal-800)
}

.primary-action {
@include primary-action($ux-teal-600, $ux-teal-700, $ux-white)
}
}

.Alert-warning {
background-color: $ux-yellow-100;
color: $ux-yellow-900;
Expand Down
4 changes: 4 additions & 0 deletions src/Dropdown/DropdownToggle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ $warning: $ux-yellow-400;
all: unset;
}

&--unstyled {
all: unset;
}

i, svg {
&.icon-left {
margin-right: $ux-spacing-20;
Expand Down
1 change: 0 additions & 1 deletion src/FormGroup/FormGroup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ export default function FormGroup(props) {
{renderErrors(errorMessage)}
</div>
)}

</>
);

Expand Down

0 comments on commit bf2949b

Please sign in to comment.