Skip to content

Commit c8bebc1

Browse files
committed
fix: github star
1 parent 7fb3873 commit c8bebc1

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

client/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ <h3 id="modalTitle">Incoming File</h3>
8888
<i class="ri-youtube-line"></i>
8989
</a>
9090
</div>
91+
<a class="star-btn" href="https://github.com/DhanushNehru/OpenDrop" target="_blank" rel="noopener noreferrer">
92+
<i class="ri-star-line"></i> Star on GitHub
93+
</a>
9194
</footer>
9295
</body>
9396
</html>

client/style.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,3 +517,30 @@ main {
517517
color: var(--accent-primary);
518518
transform: translateY(-2px);
519519
}
520+
521+
.star-btn {
522+
display: inline-flex;
523+
align-items: center;
524+
gap: 0.4rem;
525+
margin-top: 0.75rem;
526+
padding: 0.4rem 1rem;
527+
background: transparent;
528+
color: var(--text-muted);
529+
border: 1px solid var(--glass-border);
530+
border-radius: 20px;
531+
font-family: inherit;
532+
font-size: 0.8rem;
533+
font-weight: 600;
534+
text-decoration: none;
535+
transition: all 0.2s ease;
536+
}
537+
538+
.star-btn:hover {
539+
color: #fbbf24;
540+
border-color: #fbbf24;
541+
box-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
542+
}
543+
544+
.star-btn i {
545+
font-size: 0.95rem;
546+
}

0 commit comments

Comments
 (0)