Skip to content

Commit

Permalink
fix: ChannelArticle iframe에서 object로 태그 수정 및CSS 수정 #116
Browse files Browse the repository at this point in the history
  • Loading branch information
seoye0ng committed Jan 23, 2024
1 parent 89d889a commit 6c37cbf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ $img-size: 39px;
.videoContainer {
aspect-ratio: 16 / 9;

iframe {
object {
width: 100%;
height: 100%;
vertical-align: top;
}
}

Expand All @@ -19,7 +20,7 @@ $img-size: 39px;
box-sizing: border-box;
align-items: flex-start;
width: 100%;
padding: 16px 19.5px;
padding: 16px 20px;
gap: 12px;

.imgBox {
Expand Down
20 changes: 0 additions & 20 deletions src/components/shared/channel-article/ChannelList.tsx

This file was deleted.

4 changes: 2 additions & 2 deletions src/components/shared/channel-article/ChannelMoreBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ function ChannelMoreBtn() {
<button aria-label="더보기 버튼" onClick={handleClick}>
<More />
</button>

{/* TODO: 더보기 버튼 클릭시 보여질 내용 */}
{isClicked && (
<div>더보기 클릭</div>
<div style={{ fontSize: '10px' }}>더보기 클릭</div>
)}
</div>
);
Expand Down

0 comments on commit 6c37cbf

Please sign in to comment.