diff --git a/CHANGELOG.md b/CHANGELOG.md index fd40f5a5e6..f63f72382a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ - Fix playground support check ([#1162](https://github.com/opensearch-project/oui/pull/1162)) - Prevent collapsable button of a resizable from adding to the height when hidden ([#1223](https://github.com/opensearch-project/oui/pull/1223)) - Prevent action buttons of OuiDataGridCell from moving the content ([#1224](https://github.com/opensearch-project/oui/pull/1224)) +- Fix vertical alignment and font weight of breadcrumbs that are buttons or links ([#1232](https://github.com/opensearch-project/oui/pull/1232)) ### 🚞 Infrastructure diff --git a/src/components/breadcrumbs/_breadcrumbs.scss b/src/components/breadcrumbs/_breadcrumbs.scss index e75d15cf49..365303be4d 100644 --- a/src/components/breadcrumbs/_breadcrumbs.scss +++ b/src/components/breadcrumbs/_breadcrumbs.scss @@ -133,3 +133,8 @@ .ouiBreadcrumbWall--single { background-image: linear-gradient(to right, $ouiBreadcrumbActiveBackground 0 $ouiSizeM, transparent $ouiSizeM); } + +.euiLink.euiBreadcrumb { + line-height: inherit; + font-weight: inherit; +}