Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Luke front end new #30

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions frontend/src/Components/Global/LogoutButton.module.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
.Logout{
padding: 0.7pc 0.1pc;
width: 55px;
max-height: 40px;
width: 50px;
max-height: 35px;
cursor: pointer;
border: none;
background-image: linear-gradient(to right, blue, purple);
left: 20%;
border-radius: 10px;
color: white;
height: 3rem;
Expand All @@ -14,9 +12,9 @@
padding-top: 0.5rem;
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
margin-left: 0.65rem;
margin-left: 0.35rem;
}

.logoutText{
margin-left: 0.95rem;
margin-left: 0.5rem;
}
2 changes: 1 addition & 1 deletion frontend/src/Components/Global/Navbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}

.navbar:hover{
width: 16rem;
width: 20rem;
}

.navbar:hover body{
Expand Down
3 changes: 0 additions & 3 deletions frontend/src/Pages/IT_Technician/it_technician_home_page.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import styles from "./it_technician_home_page.module.css";
import Navbar from "../../Components/Global/Navbar";
import LogoutButton from "../../Components/Global/LogoutButton";


function IT_Technician_HomePage() {
document.title = "IT Technician Home Page";
Expand All @@ -15,7 +13,6 @@ function IT_Technician_HomePage() {
<Navbar homePageTitle="IT Technician Home Page" homePageLink="/it_technician_home_page" links={links}/>
<div className={styles.mainContainer}>
<h1>Home</h1>
<LogoutButton/>
</div>
</>
)
Expand Down