diff --git a/src/assets/css/main.css b/src/assets/css/main.css index e84e0a3..9d5b530 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -14,6 +14,12 @@ webkit-box-shadow: unset; box-shadow: unset; 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 { font-family: "CaviarDreams", Fallback, sans-serif; @@ -32,11 +38,29 @@ p { font: 1.2em/1.62 sans-serif; } -.join-banner { - width: 100%; - height: 100px; +.join-icon { + width: 80px; + height: 80px; 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 { width: 100%; height: 300px; @@ -65,3 +89,7 @@ img { margin-top: 7px; background-color: #333; } + +.button-yellow { + background-color: #b5932e !important; +} \ No newline at end of file diff --git a/src/shared/components/instances.tsx b/src/shared/components/instances.tsx index fe2db28..24e3adc 100644 --- a/src/shared/components/instances.tsx +++ b/src/shared/components/instances.tsx @@ -48,40 +48,44 @@ export class Instances extends Component { renderList(header: string, instances: any[]) { return (
-

{header}

-
+ + + +
+

{i18n.t("lemmy_servers")}

+ {this.header()} +
+
+

{i18n.t("choose_and_join")}

+ {instances.map(i => ( -
-
-
-

{i.domain}

-

- - {numToSI(i.users_active_month)} {i18n.t("users")} /{" "} - {i18n.t("month")} - -

+
+ +
+
+

{i.name}

+ + {numToSI(i.users_active_month)} {i18n.t("users")} /{" "} + {i18n.t("month")} +
-
-
- +

{i.description}

-
-

{i.description}

- + {i.require_application ? ( + + {i18n.t("apply_to_join")} + + ) : ( + + {i18n.t("join")} + + )}
))}