+
)}
diff --git a/src/components/spaces/ViewSpaceLink.tsx b/src/components/spaces/ViewSpaceLink.tsx
index 210b4358b..9301fdc95 100644
--- a/src/components/spaces/ViewSpaceLink.tsx
+++ b/src/components/spaces/ViewSpaceLink.tsx
@@ -1,5 +1,5 @@
import Link from 'next/link'
-import React from 'react'
+import React, { CSSProperties } from 'react'
import { SpaceStruct } from 'src/types'
import { spaceUrl } from '../urls'
@@ -9,22 +9,25 @@ type Props = {
hint?: string
className?: string
containerClassName?: string
+ style?: CSSProperties
+ containerStyle?: CSSProperties
}
export const ViewSpaceLink = React.memo(
- ({ space, title, hint, className, containerClassName }: Props) => {
+ ({ space, title, hint, className, containerClassName, containerStyle, style }: Props) => {
if (!space.id || !title) return null
return (
{
e.stopPropagation()
e.preventDefault()
}}
>
-
+
{title}
diff --git a/src/styles/subsocial.scss b/src/styles/subsocial.scss
index 9e372315d..94989f4a4 100644
--- a/src/styles/subsocial.scss
+++ b/src/styles/subsocial.scss
@@ -2239,6 +2239,12 @@ hr {
}
}
+@media screen and (min-width: 1200px) {
+ .xl-hidden {
+ display: none !important;
+ }
+}
+
.\!FontTiny {
font-size: $font_tiny !important;
}