Browse Source

Decrease padding of form-control input in 2-step-verification-code (#2181)

BG-Software 6 months ago
parent
commit
2c9a4dfb37
2 changed files with 6 additions and 1 deletions
  1. 5 0
      .changeset/ninety-cars-hug.md
  2. 1 1
      preview/pages/2-step-verification-code.html

+ 5 - 0
.changeset/ninety-cars-hug.md

@@ -0,0 +1,5 @@
+---
+"preview": patch
+---
+
+Decrease padding of `input` in `2-step-verification-code`

+ 1 - 1
preview/pages/2-step-verification-code.html

@@ -23,7 +23,7 @@ permalink: 2-step-verification-code.html
 					<div class="row g-2">
 						{% for i in (1..3) %}
 						<div class="col">
-							<input type="text" class="form-control form-control-lg text-center py-3" maxlength="1" inputmode="numeric" pattern="[0-9]*" data-code-input />
+							<input type="text" class="form-control form-control-lg text-center px-3 py-3" maxlength="1" inputmode="numeric" pattern="[0-9]*" data-code-input />
 						</div>
 						{% endfor %}
 					</div>