diff --git a/epicyon-profile.css b/epicyon-profile.css index 012991b8..a484e80c 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -585,6 +585,10 @@ div.gallery img { body, html { font-size: var(--font-size4); } + .hashtagcloud { + font-size: var(--font-size4); + word-spacing: 30px; + } .galleryContainer { display: grid; grid-template-columns: 50% 50%; @@ -904,6 +908,10 @@ div.gallery img { body, html { font-size: var(--font-size3); } + .hashtagcloud { + font-size: var(--font-size3); + word-spacing: 30px; + } div.gallerytext { color: var(--gallery-text-color); font-size: var(--gallery-font-size-mobile); diff --git a/webinterface.py b/webinterface.py index 765a9bd4..29d8de42 100644 --- a/webinterface.py +++ b/webinterface.py @@ -3778,7 +3778,7 @@ def htmlHashTagCloud(baseDir: str,path: str) -> str: tagCloudHtml='
\n' tagCloudStr='' for tagName in tagCloud: - tagCloudStr+=''+tagName+' ' + tagCloudStr+=''+tagName+' ' tagCloudHtml+=tagCloudStr.strip()+'\n
\n' return tagCloudHtml @@ -3810,7 +3810,7 @@ def htmlSearch(translate: {}, \ followStr+=' ' followStr+=' ' followStr+=' ' - followStr+='

'+htmlHashTagCloud(baseDir,path)+'

' + followStr+='

'+htmlHashTagCloud(baseDir,path)+'

' followStr+=' ' followStr+='' followStr+=htmlFooter()