diff options
Diffstat (limited to 'layouts/recordings/single.html')
| -rw-r--r-- | layouts/recordings/single.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/recordings/single.html b/layouts/recordings/single.html index 6e52caa..10000c2 100644 --- a/layouts/recordings/single.html +++ b/layouts/recordings/single.html @@ -14,6 +14,19 @@ h1{margin:0 0 6px} .content :is(h1,h2,h3){margin-top:1.2em} .content img, .content video{max-width:100%;height:auto} + /* 모바일에서 줄바꿈 조정 */ + @media (max-width: 768px) { + .content br { + display: none; + } + .content p { + margin: 0.5em 0; + } + /* 문단 구분은 유지하되, 단일 줄바꿈은 무시 */ + .content p + p { + margin-top: 1em; + } + } </style> </head> <body> |
