codestates / codestates/FilmStorage

[DevLog] 이현걸 / 2022-04-10

Open
#302 0 comments 0 reactions 1 assignee Claimed by @hyeongirlife View on GitHub
DevLog
Dominant language
JavaScript
Stars
5
Forks
5
PR merge metrics
No merged PRs in 30d

Description

### 오늘은 어떻게 프로젝트에 기여했나요?

- 필름토크 반응형 웹페이지 구현

### 오늘의 프로젝트에서 힘든 점은 무엇인가요?

- 게시글의 제목이 길어질 경우 width 가 길어져서 다루기가 힘들었음

```js
const Td = styled.td`
border-bottom: 1px solid Gainsboro;
padding: 15px 10px;
font-size: 14px;
color: #222;
text-align: ${(props) => (props.left ? "left" : "center")};
cursor: ${(props) => (props.pointer ? "pointer" : null)};
@media screen and (max-width: 412px) {
white-space: nowrap;
display:block;
width: 50px;
overflow: hidden;
text-overflow: ellipsis;
padding: 10px;
font-size: 10px;
white-space: pre;
}
`;
```

### 내일은 프로젝트에 기여하기 위해 무엇을 해야 하나요?

- [ ] 최종배포 관리
- [ ] 팀 영상 제작

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.