diff --git a/components/FilterBar/index.scss b/components/FilterBar/index.scss index 5cfb852f..3bb8821e 100644 --- a/components/FilterBar/index.scss +++ b/components/FilterBar/index.scss @@ -102,6 +102,23 @@ } } + .Filter.Button { + justify-content: center; + + .Text { + display: none; + width: auto; + + @include breakpoint(tablet) { + display: block; + } + + @include breakpoint(phone) { + display: block; + } + } + } + .UserInfo { align-items: center; display: flex; diff --git a/components/FilterBar/index.tsx b/components/FilterBar/index.tsx index 5d94deb9..9d69cca8 100644 --- a/components/FilterBar/index.tsx +++ b/components/FilterBar/index.tsx @@ -181,6 +181,7 @@ const FilterBar = (props: Props) => { className={filterButtonClasses} blended={true} leftAccessoryIcon={} + text={t('filters.name')} onClick={() => setFilterModalOpen(true)} /> diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 29acc26f..2d23f711 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -93,6 +93,7 @@ "unauthorized": "You don't have permission to perform that action" }, "filters": { + "name": "Filter", "labels": { "element": "Element", "series": "Series", diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index 7391a5b4..f4351ccd 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -93,6 +93,7 @@ "unauthorized": "行ったアクションを実行する権限がありません" }, "filters": { + "name": "フィルター", "labels": { "element": "属性", "series": "シリーズ",