We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e96271d + f5256df commit c070a96Copy full SHA for c070a96
src/Nav.css
@@ -57,4 +57,11 @@
57
.navbar-right .nav-links a {
58
color: #000;
59
text-decoration: none;
60
+ line-height: 28px;
61
+ display: inline-flex;
62
+ align-items: center;
63
}
64
+
65
+.github-stars-badge {
66
+ height: 28px;
67
+}
src/Nav.jsx
@@ -22,6 +22,19 @@ const Navbar = () => {
22
<li>
23
<a href="#about">About</a>
24
</li>
25
+ <li>
26
+ <a
27
+ href="https://github.com/containers/ramalama"
28
+ target="_blank"
29
+ rel="noopener noreferrer"
30
+ >
31
+ <img
32
+ className="github-stars-badge"
33
+ src="https://img.shields.io/github/stars/containers/ramalama?style=social&label=Star&maxAge=240"
34
+ alt="GitHub stars"
35
+ />
36
+ </a>
37
+ </li>
38
</ul>
39
</div>
40
</nav>
0 commit comments