개발자 99% 커뮤니티에서 수다 떨어요!
안녕하세요 코코아클론 강의 듣고 있는 중인데 status-bar가 로그인하고 friends.html이나 chats.html에서는 제일 위에 고정이 되는데 index.html에서만 자꾸 제일 위에 고정이 안 되어있고 welcome to kokoa clone 부분이랑 겹치게 나와요 ㅜㅜ
.status-bar {
display: flex;
justify-content: center;
padding: 5px 3px;
}
.status-bar__column {
width: 33%;
}
.status-bar__column:first-child span {
margin-right: 5px;
}
.status-bar__column:nth-child(2) {
display: flex;
justify-content: center;
}
.status-bar__column:last-child {
display: flex;
justify-content: flex-end;
align-items: center;
}
.status-bar__column .fa-battery-quarter {
margin: 0px 5px;
}
.status-bar {
position: fixed;
width: 100%;
box-sizing: border-box;
}