From cc33839f56d36184b8ad331e3e0c294c28e27c96 Mon Sep 17 00:00:00 2001 From: Outrun Colors Date: Sat, 24 Sep 2022 21:55:16 -0500 Subject: [PATCH] Small padding on mobile chat heading --- chat/package.json | 2 +- chat/src/App.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/chat/package.json b/chat/package.json index 219c74b4b..0bbac3f2f 100644 --- a/chat/package.json +++ b/chat/package.json @@ -1,6 +1,6 @@ { "name": "chat", - "version": "0.0.16", + "version": "0.0.17", "main": "./src/index.tsx", "license": "MIT", "dependencies": { diff --git a/chat/src/App.css b/chat/src/App.css index a77b5ff9e..c32582e65 100644 --- a/chat/src/App.css +++ b/chat/src/App.css @@ -94,6 +94,10 @@ body { /* On mobile, hide the sidebar and make the input full-width. */ @media screen and (max-width: 1100px) { + .App-heading { + padding: 0 1rem; + } + .App-side { display: none; }