Skip to content

Commit

Permalink
Merge pull request #34 from joog-lim/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
iseolin76 authored Sep 14, 2021
2 parents cf1fefc + 5386d51 commit 79a21bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/components/algorithms/algorithms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ const Algorithms: React.FC<AlgorithmsProps> = (p: AlgorithmsProps) => {
createdAt={p.data.createdAt}
number={p.data.number}
tag={p.data.tag}
content={p.data.content}
title={p.data.title}
/>
<h4>{p.data.title}</h4>
<p>{p.data.content}</p>
Expand Down
2 changes: 2 additions & 0 deletions src/components/algorithms/item/headerContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ export interface HeaderProps {
status: string;
createdAt: number;
number: number | string;
title?: string;
content?: string;
tag?: string;
}

Expand Down
7 changes: 2 additions & 5 deletions src/components/index/item/sidebar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

.textareaBox {
@include c.every-box;
padding: 10px;
padding: 10px 0 10px 10px;
width: calc(100% - 20px);
@media (max-width: c.$laptop) {
width: 100%;
Expand All @@ -74,10 +74,7 @@

.submitBtn {
@include c.green-short-btn;
margin: 0 0 0 calc(100% - 60px);
@media (max-width: c.$laptop) {
margin: 0 0 0 92.7%;
}
margin: 0 0 0 calc(100% - 68px);
}

.admin {
Expand Down

0 comments on commit 79a21bc

Please sign in to comment.