diff --git a/src/client/components/Article.tsx b/src/client/components/Article.tsx index 3ef343d..a6b014c 100644 --- a/src/client/components/Article.tsx +++ b/src/client/components/Article.tsx @@ -7,7 +7,6 @@ import { Weight, getSpace, } from "../lib/variables"; -import { MaterialSymbol } from "./MaterialSymbol"; import { QiitaMarkdownHtmlBody } from "./QiitaMarkdownHtmlBody"; import { Slide } from "./Slide"; @@ -25,12 +24,9 @@ export const Article = ({ renderedBody, tags, title, slide }: Props) => {

{title}

- - sell - @@ -395,6 +404,9 @@ export const SidebarContents = ({ isStateOpen, handleMobileClose }: Props) => { rel="noopener noreferrer" > コミュニティガイドライン + + open_in_new +
  • @@ -405,6 +417,9 @@ export const SidebarContents = ({ isStateOpen, handleMobileClose }: Props) => { rel="noopener noreferrer" > 利用規約 + + open_in_new +
  • @@ -415,6 +430,9 @@ export const SidebarContents = ({ isStateOpen, handleMobileClose }: Props) => { rel="noopener noreferrer" > プライバシーポリシー + + open_in_new +
  • @@ -534,7 +552,7 @@ export const SidebarContents = ({ isStateOpen, handleMobileClose }: Props) => { const sidebarStyle = css({ height: "100vh", - maxWidth: 360, + width: 360, padding: `${getSpace(2)}px 0`, position: "sticky", top: 0, @@ -632,6 +650,7 @@ const articlesListItemStyle = css({ )}px ${getSpace(3 / 2)}px`, whiteSpace: "nowrap", textOverflow: "ellipsis", + width: "100%", ...pointerFine({ "&:hover": { @@ -675,6 +694,9 @@ const articleFooterListStyle = css({ }); const articleFooterListItemStyle = css({ + alignItems: "center", + display: "flex", + gap: getSpace(1), color: Colors.mediumEmphasis, fontSize: Typography.body3, });