|
@@ -45,15 +45,13 @@ const Tag: FC = () => {
|
|
|
|
|
|
|
|
// todo: adjust design by XD
|
|
// todo: adjust design by XD
|
|
|
return (
|
|
return (
|
|
|
- // TODO : #139425 Match the space specification method to others
|
|
|
|
|
- // ref. https://redmine.weseek.co.jp/issues/139425
|
|
|
|
|
<div className="container-lg px-4 mb-5 pb-5" data-testid="grw-sidebar-content-tags">
|
|
<div className="container-lg px-4 mb-5 pb-5" data-testid="grw-sidebar-content-tags">
|
|
|
<div className="grw-sidebar-content-header py-3 d-flex">
|
|
<div className="grw-sidebar-content-header py-3 d-flex">
|
|
|
<h4 className="mb-0">{t('Tags')}</h4>
|
|
<h4 className="mb-0">{t('Tags')}</h4>
|
|
|
<SidebarHeaderReloadButton onClick={() => onReload()} />
|
|
<SidebarHeaderReloadButton onClick={() => onReload()} />
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <h3 className="my-3">{t('tag_list')}</h3>
|
|
|
|
|
|
|
+ <h6 className="my-3 pb-1 border-bottom">{t('tag_list')}</h6>
|
|
|
|
|
|
|
|
{ isLoading
|
|
{ isLoading
|
|
|
? (
|
|
? (
|
|
@@ -82,7 +80,7 @@ const Tag: FC = () => {
|
|
|
</button>
|
|
</button>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <h3 className="my-3">{t('popular_tags')}</h3>
|
|
|
|
|
|
|
+ <h6 className="my-3 pb-1 border-bottom">{t('popular_tags')}</h6>
|
|
|
|
|
|
|
|
<TagCloudBox tags={tagCloudData} />
|
|
<TagCloudBox tags={tagCloudData} />
|
|
|
</div>
|
|
</div>
|