cloudflare/vinext
Publicmirrored fromhttps://github.com/cloudflare/vinextAvailable
examples/hackernews/components/comment.module.css
39lines · modecode
| 1 | .comment { |
| 2 | margin-bottom: 15px; |
| 3 | } |
| 4 | |
| 5 | .children { |
| 6 | padding-left: 20px; |
| 7 | } |
| 8 | |
| 9 | .meta { |
| 10 | font-size: 12px; |
| 11 | margin-bottom: 5px; |
| 12 | } |
| 13 | |
| 14 | .toggle { |
| 15 | cursor: pointer; |
| 16 | } |
| 17 | |
| 18 | .text { |
| 19 | color: #000; |
| 20 | font-size: 13px; |
| 21 | line-height: 18px; |
| 22 | } |
| 23 | |
| 24 | /* hn styles */ |
| 25 | .text :global(p) { |
| 26 | margin-top: 10px; |
| 27 | } |
| 28 | |
| 29 | .text :global(pre) { |
| 30 | margin-bottom: 10px; |
| 31 | max-width: 900px; |
| 32 | overflow: auto; |
| 33 | padding: 2px; |
| 34 | white-space: pre-wrap; |
| 35 | } |
| 36 | |
| 37 | .text :global(a) { |
| 38 | color: #000; |
| 39 | } |
| 40 | |