diff --git a/services/web/frontend/stylesheets/components/forms.less b/services/web/frontend/stylesheets/components/forms.less index cbed72f5fa..fae2983279 100755 --- a/services/web/frontend/stylesheets/components/forms.less +++ b/services/web/frontend/stylesheets/components/forms.less @@ -156,7 +156,7 @@ output { display: block; width: 100%; height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border) - padding: @padding-base-vertical @padding-base-horizontal; + padding: @input-padding; font-size: @font-size-base; line-height: @line-height-base; color: @input-color; diff --git a/services/web/frontend/stylesheets/variables/all.less b/services/web/frontend/stylesheets/variables/all.less index 31289cee8f..453fcd78e4 100644 --- a/services/web/frontend/stylesheets/variables/all.less +++ b/services/web/frontend/stylesheets/variables/all.less @@ -195,6 +195,7 @@ @input-border-focus: @blue-50; //** Bordersize for inputs @input-border-size: @border-size; +@input-padding: @padding-sm; //** Placeholder text color @input-color-placeholder: @neutral-60;