Skip to content

Commit 84b9774

Browse files
committed
removed linkedin from navbar
1 parent 35524d8 commit 84b9774

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

mlflow-site/src/app/components/NavBar.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import Image from 'next/image';
44
import githubLogo from '../assets/GithubLogo.png';
5-
import linkedInLogo from '../assets/LinkedInLogo.png';
65

76
const NavBar = () => {
87
return (
@@ -49,9 +48,6 @@ const NavBar = () => {
4948
>
5049
<Image src={githubLogo} width={24} height={24} alt='G' />
5150
</a>
52-
<a href='' className='navBarLinksLinkedIn'>
53-
<Image src={linkedInLogo} width={24} height={24} alt='L' />
54-
</a>
5551
</div>
5652
</div>
5753
);

mlflow-site/src/app/globals.css

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ body {
9595
width: 100%;
9696
height: 100%;
9797
display: grid;
98-
grid-template-columns: repeat(calc(100%/6), 6);
98+
grid-template-columns: repeat(calc(100%/5), 5);
9999
grid-template-rows: 100%;
100100
align-items: center;
101101
}
@@ -116,10 +116,6 @@ body {
116116
grid-column: 5;
117117
}
118118

119-
.navBarLinksLinkedIn {
120-
grid-column: 6;
121-
}
122-
123119
.navBarMlflow {
124120
color: rgb(66, 107, 31);
125121
font-size: 1.2rem;

0 commit comments

Comments
 (0)