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.
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