Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#290 icon block 맨위에 위치하도록 수정 #292

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading