From 9615d4ba05cfd1145656d195a245406fceafb139 Mon Sep 17 00:00:00 2001 From: Sahil Batra Date: Mon, 27 Mar 2023 14:54:07 +0530 Subject: [PATCH] widgets: Add CSS to set width of inputs. This commit adds CSS to set width of text inputs in poll and todo widgets to 206px as we will be removing the bootstrap CSS rule which sets width of inputs to 206px in further commits. --- web/styles/widgets.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web/styles/widgets.css b/web/styles/widgets.css index 4c84ed5777..840f3d3d86 100644 --- a/web/styles/widgets.css +++ b/web/styles/widgets.css @@ -90,6 +90,15 @@ margin: 0 0 5px; padding: 0; } + + & input { + &.poll-question, + &.poll-option, + &.add-task, + &.add-desc { + width: 206px; + } + } } .poll-widget {