From cc6aad75c6a317ce0bc8c86b86fe2e9acd7fed50 Mon Sep 17 00:00:00 2001 From: Ganesh Pawar Date: Sat, 24 Jul 2021 13:24:42 +0530 Subject: [PATCH] widgets: Margin-left for the box-shadow to be visible on the left. --- static/styles/widgets.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/static/styles/widgets.css b/static/styles/widgets.css index 8ee5d8552e..f5f5d695b5 100644 --- a/static/styles/widgets.css +++ b/static/styles/widgets.css @@ -18,6 +18,14 @@ } } +.todo-widget { + /* For the box-shadow to be visible on the left */ + input.add-task, + input.add-desc { + margin-left: 2px; + } +} + .todo-widget, .poll-widget { h4 { @@ -37,6 +45,11 @@ } .poll-widget { + /* For the box-shadow to be visible on the left */ + input.poll-option { + margin-left: 2px; + } + .poll-option { font-weight: 600; }