Skip to content

Commit a4702f2

Browse files
committed
fix: Allineamento larghezza input field e icon button nella pagina di login
1 parent 0b2d372 commit a4702f2

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

assets/src/css/style.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -723,6 +723,23 @@ span.form-control {
723723
border-bottom-right-radius: 4px !important;
724724
}
725725

726+
/* Allineamento larghezza input field e icon button nella pagina di login */
727+
.login-box .input-group {
728+
display: flex;
729+
}
730+
731+
.login-box .input-group .form-control-lg {
732+
flex: 1;
733+
}
734+
735+
.login-box .input-group-append .input-group-text {
736+
width: auto;
737+
min-width: 45px;
738+
display: flex;
739+
align-items: center;
740+
justify-content: center;
741+
}
742+
726743
.btn-primary {
727744
transition: all 0.3s ease;
728745
}

index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ function brute() {
229229

230230
echo ' required>
231231
<div class="input-group-append">
232-
<div class="input-group-text bg-light">
233-
<i class="fa fa-user text-primary"></i>
232+
<div class="input-group-text after">
233+
<i class="fa fa-user"></i>
234234
</div>
235235
</div>
236236
</div>

0 commit comments

Comments
 (0)