Skip to content

Commit

Permalink
fix(empty-tab): override carbon default styles
Browse files Browse the repository at this point in the history
Closes #4555
  • Loading branch information
jarekdanielak authored and nikku committed Oct 15, 2024
1 parent d70401e commit e375843
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ___Note:__ Yet to be released changes appear here._

* `FIX`: show lint errors for FEEL expressions used in BPMN processes ([camunda/bpmnlint-plugin-camunda-compat#175](https://github.com/camunda/bpmnlint-plugin-camunda-compat/pull/175))
* `DEPS`: update to `@camunda/linting@3.27.2`
* `FIX`: add explicit styles for welcome tab ([#4555](https://github.com/camunda/camunda-modeler/issues/4555))

## 5.28.0

Expand Down
11 changes: 9 additions & 2 deletions client/src/app/EmptyTab.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
bottom: 0;
left: 0;


font-size: 14px;
font-size: var(--font-size-default);
font-weight: 400;
font-family: 'IBM Plex Sans';

Expand All @@ -30,6 +29,14 @@
margin-bottom: 35px;
}

/* Carbon override */
p {
font-size: 14px;

margin-top: 1em;
margin-bottom: 1em;
}

.welcome-cards {
width: 100%;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/primitives/TabLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default class TabLinks extends PureComponent {
onClick={ placeholder.onClick }
title={ placeholder.title }
>
<span className="tab__content">
<span className="tab__content tab__name">
{ placeholder.label }
</span>
</div>
Expand Down

0 comments on commit e375843

Please sign in to comment.