오늘 한 일
1) 첫 로그인 시 알림 설정 팝업창 CSS 구현
2) 로그인 유도 팝업창 CSS 구현
3) 로그인 / 회원가입 CSS 구현
4) 드롭다운 기능 수정
5) 구글 폰트에서 폰트 검색 및 import 해오기
// src/static/styles/GlobarStyle.js
import { createGlobalStyle } from "styled-components";
const GlobalStyle = createGlobalStyle`
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500&display=swap');
@font-face {
font-family: 'Roboto', sans-serif;
src: url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300;1,400;1,500&display=swap')
format("woff");
font-weight: normal;
font-style: normal;
unicode-range: U+0041-005A, U+0061-007A;
}
@font-face {
font-family: 'Noto Sans KR', sans-serif;
src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500&display=swap')
format("woff");
font-weight: normal;
font-style: normal;
unicode-range: U+AC00-U+D7A3;
}
* {
margin: 0;
padding: 0;
font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}
body {
box-sizing: border-box;
}
`;
export default GlobalStyle;
'항해 중 > 8-13주차 실전 프로젝트' 카테고리의 다른 글
[실전 프로젝트] PWA를 활용한 Push 알림 구현 (0) | 2022.01.10 |
---|---|
[실전 프로젝트] animation 사용해서 Spinner 만들기(styled-component 자식 요소 선택하는 방법) (0) | 2022.01.07 |
[실전 프로젝트] Swiper 기능 만들기 (0) | 2022.01.02 |
[실전 프로젝트] 드롭다운 기능 만들기 (0) | 2022.01.02 |
[실전 프로젝트] 로그인 전 다이어리 페이지 접근 시 팝업창 띄우기 / 음원 활성화/비활성화 구현 (0) | 2021.12.31 |
댓글