From f323c5e9b1a4662ebe39bb1658ea4b8e8143b61d Mon Sep 17 00:00:00 2001 From: z0ccc Date: Fri, 23 Jul 2021 00:28:46 -0400 Subject: [PATCH] Text box for mobile --- frontend/src/styles/App.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/styles/App.css b/frontend/src/styles/App.css index dfc8fa0..9c008ed 100644 --- a/frontend/src/styles/App.css +++ b/frontend/src/styles/App.css @@ -176,7 +176,6 @@ input[type='text'] { border: 1px solid var(--grey); border-radius: 6px; padding: 6px; - margin: 0 6px 0 0; width: 200px; outline: none; } @@ -188,6 +187,7 @@ input[type='text'] { background-color: transparent; cursor: pointer; color: var(--text); + margin: 0 0 0 6px; } #saveButton:hover { @@ -236,4 +236,8 @@ input[type='text'] { .boxWrap { padding: 8px; } + + input[type='text'] { + width: calc(100% - 65px) + } }