mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 17:21:58 +08:00
21 lines
330 B
CSS
21 lines
330 B
CSS
@custom-media --narrow-viewport (max-width: 420px);
|
|
|
|
.commentContent {
|
|
composes: content from "./CommentContent.css";
|
|
|
|
/* Prevent zoom on narrow viewports */
|
|
@media (--narrow-viewport) {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.placeholder {
|
|
position: absolute;
|
|
margin: 12px 0 0 12px;
|
|
color: #bbb;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 20px;
|
|
}
|