Skip to content

Commit

Permalink
fix(general): fix minor bugs (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincenzoDeSisto authored Apr 4, 2024
1 parent f11aa51 commit 8cb515a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/components/common/IntroSection/IntroSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ const IntroSection = ({
<div
className={
!isSearch || isSearch == undefined
? "secondaryBkg py-0 ps-3"
: "introSectionBreadWhite " + "row mx-0 px-0 my-0 py-0 ps-3"
? "secondaryBkg py-0 ps-3 ps-lg-5"
: "introSectionBreadWhite " +
"row mx-0 px-0 my-0 py-0 ps-3 ps-lg-5"
}
>
<div className="col-xl-12 ps-5">
<div className="col-xl-12 ps-lg-5">
<BreadCrumbs arrayBread={arrayBread} />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/search/SearchResultItem/SearchResultItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const SearchResultItem = ({ item }) => {
</span>{" "}
<span
onClick={() => handleRedirectUri(item.assetIri)}
style={{ cursor: "pointer" }}
style={{ cursor: "pointer", overflowWrap: "anywhere" }}
role="link"
aria-label="redirect to uri"
tabIndex={0}
Expand Down

0 comments on commit 8cb515a

Please sign in to comment.