aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/ui')
-rw-r--r--vnext/src/ui/Message.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/vnext/src/ui/Message.css b/vnext/src/ui/Message.css
index 9bcca83b..06ad5270 100644
--- a/vnext/src/ui/Message.css
+++ b/vnext/src/ui/Message.css
@@ -1,3 +1,6 @@
+@custom-media --viewport-desktop (width >=62.5rem);
+@custom-media --viewport-mobile (width < 62.5rem);
+
.msg-cont .ir {
padding: 12px;
}
@@ -231,3 +234,9 @@ blockquote {
.msg-cont .nsfw .ir img:hover {
opacity: 1;
}
+
+@media (--viewport-desktop) {
+ .msg-cont {
+ width: 640px;
+ }
+}