Skip to content

Commit

Permalink
Merge pull request #292 from boostcampwm-2024/Feature/#290_Icon_Block…
Browse files Browse the repository at this point in the history
…_λ§¨μœ„μ—_μœ„μΉ˜ν•˜λ„λ‘_μˆ˜μ •

Feature/#290 icon block λ§¨μœ„μ— μœ„μΉ˜ν•˜λ„λ‘ μˆ˜μ •
  • Loading branch information
github-actions[bot] authored Dec 4, 2024
2 parents 9674b89 + 91ec9bf commit aee3d81
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
12 changes: 3 additions & 9 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="en">
<html lang="ko">

<head>
<meta charset="UTF-8" />
Expand All @@ -14,19 +14,13 @@
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.nocta.site/" />
<meta property="og:title" content="Nocta" />
<meta
property="og:description"
content="λ°€ν•˜λŠ˜μ˜ λ³„λΉ›μ²˜λŸΌ, 자유둜운 μΈν„°λž™μ…˜ μ‹€μ‹œκ°„ 에디터"
/>
<meta property="og:description" content="λ°€ν•˜λŠ˜μ˜ λ³„λΉ›μ²˜λŸΌ, 자유둜운 μΈν„°λž™μ…˜ μ‹€μ‹œκ°„ 에디터" />
<meta property="og:image" content="https://www.nocta.site/images/nocta.png" />

<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.nocta.site/" />
<meta property="twitter:title" content="Nocta" />
<meta
property="twitter:description"
content="λ°€ν•˜λŠ˜μ˜ λ³„λΉ›μ²˜λŸΌ, 자유둜운 μΈν„°λž™μ…˜ μ‹€μ‹œκ°„ 에디터"
/>
<meta property="twitter:description" content="λ°€ν•˜λŠ˜μ˜ λ³„λΉ›μ²˜λŸΌ, 자유둜운 μΈν„°λž™μ…˜ μ‹€μ‹œκ°„ 에디터" />
<meta property="twitter:image" content="https://www.nocta.site/images/nocta.png" />

<meta name="robots" content="index, follow" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { css, cva } from "@styled-system/css";
export const iconContainerStyle = css({
display: "flex",
justifyContent: "center",
alignItems: "center",
minWidth: "24px",
width: "24px",
height: "24px",
marginRight: "8px",
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export const menuBlockStyle = css({
left: 0,
justifyContent: "center",
alignItems: "center",
width: "20px",
height: "20px",
width: "24px",
height: "24px",
marginLeft: "-20px",
opacity: 0,
transition: "opacity 0.2s ease-in-out",
Expand Down
3 changes: 2 additions & 1 deletion client/src/features/editor/components/block/Block.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ export const contentWrapperStyle = cva({
position: "relative",
flex: 1,
flexDirection: "row",
alignItems: "center",
alignItems: "flex-start",
width: "100%",
height: "100%",
},
});

Expand Down

0 comments on commit aee3d81

Please sign in to comment.