Skip to content

Commit

Permalink
chore(frontend):remove line under logout button
Browse files Browse the repository at this point in the history
Implement LFA feedback to remove margin bottom line under the log out button on the frontend template

[Finishes #165447987]
  • Loading branch information
tolulope-od committed Apr 18, 2019
1 parent 0ae1ec2 commit d3233b0
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion UI/accountInfo.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="editprofile.html" class="dropdown-item">Profile</a>
<a href="editprofile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/admin/accountinfo.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="../editprofile.html" class="dropdown-item">Profile</a>
<a href="../editprofile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/admin/addstaff.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="../editprofile.html" class="dropdown-item">Profile</a>
<a href="../editprofile.html" class="dropdown-item profile">Profile</a>
<a href="../index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/admin/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="../editProfile.html" class="dropdown-item">Profile</a>
<a href="../editProfile.html" class="dropdown-item profile">Profile</a>
<a href="../index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/admin/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="../editprofile.html" class="dropdown-item">Profile</a>
<a href="../editprofile.html" class="dropdown-item profile">Profile</a>
<a href="../index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/admin/viewaccounts.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="../editProfile.html" class="dropdown-item">Profile</a>
<a href="../editProfile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/createAccount.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="editprofile.html" class="dropdown-item">Profile</a>
<a href="editprofile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="editprofile.html" class="dropdown-item">Profile</a>
<a href="editprofile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/editProfile.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="editprofile.html" class="dropdown-item">Profile</a>
<a href="editprofile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/errorPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="editprofile.html" class="dropdown-item">Profile</a>
<a href="editprofile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
2 changes: 1 addition & 1 deletion UI/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</div>
</div>
<div class="profile-dropdown" id="dropdown-contents">
<a href="editprofile.html" class="dropdown-item">Profile</a>
<a href="editprofile.html" class="dropdown-item profile">Profile</a>
<a href="index.html" class="dropdown-item">Logout</a>
</div>
<div class="main">
Expand Down
3 changes: 3 additions & 0 deletions UI/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,9 @@ button.dropdown-trigger:focus {
display: flex;
flex-direction: column;
padding: 5px 20px;
}

.profile {
border-bottom: 1px solid black;
}

Expand Down

0 comments on commit d3233b0

Please sign in to comment.