Redesign instance list

This commit is contained in:
Felix Ableitner 2022-03-02 13:34:37 +01:00
parent 2a8787aaa8
commit a19edf1d94
2 changed files with 58 additions and 36 deletions

View file

@ -14,6 +14,12 @@
webkit-box-shadow: unset; webkit-box-shadow: unset;
box-shadow: unset; box-shadow: unset;
border: 1px solid var(--color-darkGrey) !important; border: 1px solid var(--color-darkGrey) !important;
padding: 10px;
margin: 10px 0 10px 0;
height: 100px;
display: flex;
flex-direction: row;
align-items: center;
} }
.stylized { .stylized {
font-family: "CaviarDreams", Fallback, sans-serif; font-family: "CaviarDreams", Fallback, sans-serif;
@ -32,11 +38,29 @@
p { p {
font: 1.2em/1.62 sans-serif; font: 1.2em/1.62 sans-serif;
} }
.join-banner { .join-icon {
width: 100%; width: 80px;
height: 100px; height: 80px;
object-fit: scale-down; object-fit: scale-down;
} }
.join-text {
display: inline-block;
margin: 0 10px 0 10px;
display: flex;
flex-direction: column;
flex: 1;
}
.join-header {
display: flex;
flex-direction: row;
}
.join-title {
margin: 0px;
flex: 1;
}
.join-desc {
font-size: 0.9em;
}
.app-banner { .app-banner {
width: 100%; width: 100%;
height: 300px; height: 300px;
@ -65,3 +89,7 @@ img {
margin-top: 7px; margin-top: 7px;
background-color: #333; background-color: #333;
} }
.button-yellow {
background-color: #b5932e !important;
}

View file

@ -36,31 +36,27 @@ export class Instances extends Component<any, any> {
<br /> <br />
<p>{i18n.t("choose_and_join")}</p> <p>{i18n.t("choose_and_join")}</p>
<div class="row">
{instances.map(i => ( {instances.map(i => (
<div class="card col-6"> <div class="card">
<header> <img
<div class="row"> class="join-icon"
<h4 class="col">{i.domain}</h4> src={i.icon || "/static/assets/images/lemmy.svg"}
<h4 class="col text-right"> />
<div class="join-text">
<div class="join-header">
<h4 class="join-title">{i.name}</h4>
<i> <i>
{numToSI(i.users_active_month)} {i18n.t("users")} /{" "} {numToSI(i.users_active_month)} {i18n.t("users")} /{" "}
{i18n.t("month")} {i18n.t("month")}
</i> </i>
</h4>
</div> </div>
</header>
<div class="is-center">
<img
class="join-banner"
src={i.icon || "/static/assets/images/lemmy.svg"}
/>
</div>
<br />
<p class="join-desc">{i.description}</p> <p class="join-desc">{i.description}</p>
<footer> </div>
{i.require_application ? ( {i.require_application ? (
<a class="button primary" href={`https://${i.domain}`}> <a
class="button primary button-yellow"
href={`https://${i.domain}`}
>
{i18n.t("apply_to_join")} {i18n.t("apply_to_join")}
</a> </a>
) : ( ) : (
@ -68,12 +64,10 @@ export class Instances extends Component<any, any> {
{i18n.t("join")} {i18n.t("join")}
</a> </a>
)} )}
</footer>
</div> </div>
))} ))}
</div> </div>
</div> </div>
</div>
); );
} }
} }