Skip to content

Commit 4f6db8e

Browse files
committed
feat: Disable webkit tap highlight
1 parent ad669bb commit 4f6db8e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

layout/styles/layout.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ body {
2727
// padding: 0rem 2rem 0 2rem; /* trbl */
2828
}
2929

30+
// Disable Tap Highlight
31+
a, button, input, select, textarea {
32+
-webkit-tap-highlight-color: transparent;
33+
}
34+
3035
// Code highlight
3136
.markdown-body {
3237
pre.chroma {

main.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ import (
2929

3030
// TODO: Email 추가하기
3131

32+
// FIX: safari에서 css 이상함. 링크 클릭시 줄어드는 오류 해결하기.
33+
34+
// TODO: 다크모드
35+
3236
func main() {
3337
md := goldmark.New(
3438
goldmark.WithRendererOptions(

0 commit comments

Comments
 (0)