diff --git a/packages/app/src/Element/Bookmarks.css b/packages/app/src/Element/Bookmarks.css new file mode 100644 index 0000000..72fd77e --- /dev/null +++ b/packages/app/src/Element/Bookmarks.css @@ -0,0 +1,19 @@ +.icon-title { + font-weight: 600; + font-size: 19px; + line-height: 23px; + display: flex; + align-items: center; + margin-bottom: 22px; +} +.icon-title svg { + margin-right: 8px; +} + +.icon-title h3 { + margin: 0; +} + +.icon-title select { + margin-left: auto; +} diff --git a/packages/app/src/Element/Bookmarks.tsx b/packages/app/src/Element/Bookmarks.tsx index b77cad8..0b42db5 100644 --- a/packages/app/src/Element/Bookmarks.tsx +++ b/packages/app/src/Element/Bookmarks.tsx @@ -1,3 +1,4 @@ +import "./Bookmarks.css"; import { useState, useMemo, ChangeEvent } from "react"; import { useSelector } from "react-redux"; import { FormattedMessage } from "react-intl";