Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: header position #3345

Merged
merged 3 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export default class DetailPage extends Component {
</div>
{/* Extra Zowe information */}
{apiPortalEnabled && tiles[0].title.toLowerCase().indexOf('zowe') >= 0 && (
<div style={{ display: 'flex', flexDirection: 'column' }}>
<div style={{ display: 'flex', flexDirection: 'column', width: '80%' }}>
<div>
<img id="zowe" alt="Zowe" src={zoweImage} className="hover" />
</div>
Expand Down
11 changes: 6 additions & 5 deletions api-catalog-ui/frontend/src/components/Header/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body {
display: contents;
}
}

.dashboard-develop-link {
margin-right: var( --spaceLarger );
}
Expand Down Expand Up @@ -53,7 +53,7 @@ body {
top: -5px;
left: 110%;
}

.app-icon-container .tooltiptext::after {
content: "";
position: absolute;
Expand Down Expand Up @@ -88,9 +88,10 @@ body {
filter: invert(28%) sepia(93%) saturate(1803%) hue-rotate(190deg) brightness(96%) contrast(101%);
}
> a {
display: flex;
align-items: center;
text-align: right;
white-space: nowrap;
img {
margin-bottom: -1px;
}

img:first-child {
margin-right: var( --spaceSmallest );
Expand Down
Loading