2skydev / Notion-Next.js-blog-starter-kit

Notion + Next.js Blog Starter Kit - Next.js + Notion ISR static page blog starter kit
https://blog.2skydev.com
90 stars 56 forks source link

모바일에서 검색 버튼을 보이게 하는 방법 #69

Open hyuk-dev opened 2 months ago

hyuk-dev commented 2 months ago

현재 pc와 태블릿에서만 검색 아이콘이 표시되는데 이를 모바일에서도 뜨게 하려면 어떻게 해야할까요?

bihv commented 1 month ago

@hyuk-dev you can comment the css (display: none !important;) in https://github.com/2skydev/Notion-Next.js-blog-starter-kit/blob/main/styles/notion.css @media only screen and (max-width: 600px) { .notion-search-button { display: none !important; } }