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.
This commit is contained in:
Sahil Batra 2023-03-27 14:54:07 +05:30 committed by Tim Abbott
parent 52619657ca
commit 9615d4ba05
1 changed files with 9 additions and 0 deletions

View File

@ -90,6 +90,15 @@
margin: 0 0 5px;
padding: 0;
}
& input {
&.poll-question,
&.poll-option,
&.add-task,
&.add-desc {
width: 206px;
}
}
}
.poll-widget {