Skip to content

Commit 248e0ee

Browse files
committed
Update
1 parent 1371cdb commit 248e0ee

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ Check out [Bootstrap Number Inputs Documentation](https://mdbootstrap.com/docs/s
3939
[Bootstrap Number inputs precision:
4040
![Bootstrap 5 Number Inputs](/assets/precision.png)](https://mdbootstrap.com/docs/standard/extended/number-inputs/#section-precision)
4141

42-
[Bootstrap Number inputs prefix dollar sign:
43-
](https://mdbootstrap.com/docs/standard/extended/number-inputs/#section-prefix-dollar-sign)
44-
4542
[Bootstrap Number inputs icon:
4643
![Bootstrap 5 Number Inputs](/assets/icon.png)](https://mdbootstrap.com/docs/standard/extended/number-inputs/#subsection-icon)
4744

base-value.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
</head>
2323
<body>
2424
<!-- Start your project here-->
25-
25+
<div class="container d-flex justify-content-center mt-5">
2626
<div class="form-outline" style="width: 22rem;">
2727
<input value="50" type="number" id="typeNumber" class="form-control" />
2828
<label class="form-label" for="typeNumber">Number input</label>
2929
</div>
30+
</div>
3031

3132
<!-- End your project here-->
3233

basic-example.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@
2222
</head>
2323
<body>
2424
<!-- Start your project here-->
25-
25+
<div class="container d-flex justify-content-center mt-5">
2626
<div class="form-outline" style="width: 22rem;">
2727
<input type="number" id="typeNumber" class="form-control" />
2828
<label class="form-label" for="typeNumber">Number input</label>
29+
</div>
2930
</div>
3031

3132
<!-- End your project here-->

icon.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
</head>
2323
<body>
2424
<!-- Start your project here-->
25-
25+
<div class="container d-flex justify-content-center mt-5">
2626
<div class="form-outline" style="width: 22rem;">
2727
<i class="fas fa-dollar-sign trailing"></i>
2828
<input type="number" id="form1" class="form-control form-icon-trailing" />
2929
<label class="form-label" for="form1">Enter the amount</label>
30+
</div>
3031
</div>
3132

3233
<!-- End your project here-->

minimum-and-maximum.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@
2222
</head>
2323
<body>
2424
<!-- Start your project here-->
25-
25+
<div class="container d-flex justify-content-center mt-5">
2626
<div class="form-outline" style="width: 22rem;">
2727
<input min="10" max="20" type="number" id="typeNumber" class="form-control" />
2828
<label class="form-label" for="typeNumber">Number input</label>
29+
</div>
2930
</div>
3031

3132
<!-- End your project here-->

phone-number.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@
2222
</head>
2323
<body>
2424
<!-- Start your project here-->
25-
25+
<div class="container d-flex justify-content-center mt-5">
2626
<div class="form-outline" style="width: 22rem;">
2727
<input type="tel" id="typePhone" class="form-control" />
2828
<label class="form-label" for="typePhone">Phone number input</label>
29+
</div>
2930
</div>
3031

3132
<!-- End your project here-->

precision.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</head>
2323
<body>
2424
<!-- Start your project here-->
25-
25+
<div class="container d-flex justify-content-center mt-5">
2626
<row>
2727
<div class="col-lg-12 my-3">
2828
<div class="form-outline" style="width: 22rem;">
@@ -37,6 +37,7 @@
3737
</div>
3838
</div>
3939
</row>
40+
</div>
4041

4142
<!-- End your project here-->
4243

unremovable-postifx.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
</head>
2323
<body>
2424
<!-- Start your project here-->
25-
25+
<div class="container d-flex justify-content-center mt-5">
2626
<div class="form-outline" style="width: 22rem;">
2727
<input id="postfix" value="$" type="text" id="form2" class="form-control" />
2828
<label class="form-label" for="form2">Enter the amount</label>
2929
</div>
30-
30+
</div>
3131
<!-- End your project here-->
3232

3333
<!-- MDB -->

0 commit comments

Comments
 (0)