File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed
Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,12 @@ const projects: Project[] = [
5454 icon: ' https://codeberg.org/qcoret/prikkert/raw/branch/main/src/lib/assets/icon.svg' ,
5555 name: ' Prikkert' ,
5656 description: ' An open-source app for scheduling group events. Always free, no ads.'
57+ },
58+ {
59+ href: ' https://hopbox.net/' ,
60+ icon: ' https://hopbox.net/logo.png' ,
61+ name: ' Hopbox' ,
62+ description: ' Run Networks on Autopilot'
5763 }
5864]
5965---
@@ -62,7 +68,9 @@ const projects: Project[] = [
6268 { projects .map (({href , icon , name , description }) =>
6369 <proj-single >
6470 <a href = { href } target = " _blank" >
65- <img src = { icon } alt = { name } />
71+ <logo-cont >
72+ <img src = { icon } alt = { name } />
73+ </logo-cont >
6674 <span >{ name } </span >
6775 </a >
6876 <small >{ description } </small >
93101 align-items: center;
94102}
95103
96- img {
104+ logo-cont {
105+ display: flex;
106+ align-items: center;
107+ justify-content: center;
108+ width: 5em;
97109 height: 5em;
98110}
99111
112+ logo-cont img {
113+ width: 100%
114+ }
115+
100116small {
101117 text-align: center;
102118}
You can’t perform that action at this time.
0 commit comments