Problem/Motivation

The icon looks fine, but the text right next to it is skewed.
Steps to reproduce
Go to https://fldcevent-platform-september.ddev.site/user/1 and look at the path.
web/themes/contrib/event_horizon/components/site-header/site-header.css
ol.breadcrumb__list li {
display: inline-block;
transform: skewX(-30deg);
border-left: 2px solid #ddd;
padding-left: 1rem;
margin-right: 1rem;
}
Proposed resolution
ol.breadcrumb__list li:first-of-type {
display: inline-block;
transform: skewX(-30deg);
border-left: 2px solid #ddd;
padding-left: 1rem;
margin-right: 1rem;
}
ol.breadcrumb__list li {
display: inline-block;
border-left: 2px solid #ddd;
padding-left: 1rem;
margin-right: 1rem;
}
fldcevent_platform-september/web/themes/contrib/event_horizon/components/site-header/site-header.scss

Remaining tasks
Swap the code and test that it does not step on something else.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | Screenshot 2025-09-11 at 11.17.55 AM.png | 31.71 KB | bernardm28 |
| Screenshot 2025-09-11 at 10.57.32 AM.png | 35.84 KB | bernardm28 | |
| Screenshot 2025-09-11 at 10.45.10 AM.png | 20.78 KB | bernardm28 |
Issue fork event_horizon-3546235
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
bernardm28 commentedComment #3
bernardm28 commentedIt seems that these changes are also needed to avoid this.
instead of this code on web/themes/contrib/event_horizon/components/site-header/site-header.scss
switch it to this.
And then add the following to this CSS class.
Comment #4
mandclu commentedComment #7
mandclu commented