CreateLinkEvent('user-settings/toggle') } />
+
CreateLinkEvent('groupforum/toggle') } title={ LocalizeText('toolbar.icon.label.forums') } />
{ children }
);
diff --git a/src/css/index.css b/src/css/index.css
index 709acdb..760427e 100644
--- a/src/css/index.css
+++ b/src/css/index.css
@@ -875,12 +875,12 @@ body {
.avatar-parts {
border: none !important;
- height: 42px;
- width: 42px;
- background-position: center;
- background-repeat: no-repeat;
+ position: relative;
+ aspect-ratio: 1;
+ width: 100%;
+ max-width: 42px;
border-radius: 2rem !important;
- overflow: visible !important;
+ overflow: hidden !important;
background-color: transparent;
&:hover {
diff --git a/src/layout/InfiniteGrid.tsx b/src/layout/InfiniteGrid.tsx
index b24df2f..cb58e75 100644
--- a/src/layout/InfiniteGrid.tsx
+++ b/src/layout/InfiniteGrid.tsx
@@ -132,7 +132,12 @@ const InfiniteGridItem = forwardRef
{
- if(!itemImage || !itemImage.length) return;
+ if(!itemImage || !itemImage.length)
+ {
+ setBackgroundImageUrl(null);
+
+ return;
+ }
const image = new Image();