Skip to content

Commit cb20d89

Browse files
Merge pull request #127 from JumboCode/holden
fixed more bugs because why not
2 parents 35dd927 + 01d622a commit cb20d89

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

frontend/src/app/components/BorrowPopup.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
}
2626

27-
.container {
27+
.containerBorrow {
2828
display: flex;
2929
flex-direction: row;
3030
height: 100%;

frontend/src/app/components/BorrowPopup.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ const BorrowPopup = ({ selectedItems = [], onClose, onSuccess }) => {
218218
};
219219

220220
return (
221-
<div className="container">
221+
<div className="containerBorrow">
222222

223223
{/* Top header */}
224224
<div className="borrowItemsHeader">

frontend/src/app/components/SettingsPage.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
margin-bottom: 25px;
4444
}
4545

46-
.body {
46+
.bodySettings {
4747
font-family: Arial, sans-serif;
4848
display: flex;
4949
align-items: flex-start;
@@ -101,7 +101,7 @@ h1 {
101101
box-shadow: 0px .1rem .2rem 0px rgba(0, 0, 0, 0.25);
102102
}
103103

104-
form {
104+
.profile-form {
105105
display: flex;
106106
flex-direction: column;
107107
align-items: center;

frontend/src/app/components/SettingsPage.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export default function SettingsPage() {
123123
<div className="account-header">
124124
<h2 className="account-subheading">Account Information & Options</h2>
125125
</div>
126-
<div className="body">
126+
<div className="bodySettings">
127127
<div className="left-column">
128128
{user && (
129129
<div className="profile-card">
@@ -146,7 +146,7 @@ export default function SettingsPage() {
146146
disabled
147147
/>
148148
</div>
149-
<form>
149+
<form className="profile-form">
150150
<label htmlFor="email">Email</label>
151151
<input
152152
type="email"

frontend/src/app/inventory/15Tablecomp/PrePopup.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ export default function PrePopup({ unit, onClose, onOptionSelect, position, stat
7979

8080
return (
8181
<div className="Popup"
82-
style = {{top: position.top, right: position.right}}
83-
ref={popupRef}>
82+
style={{ top: position.top, right: `calc(${position.right} + 9px)` }}
83+
ref={popupRef}>
8484
<div className="Buttons">
8585
<div className="editBtn">
8686
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">

frontend/src/app/settings/page.jsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ const Settings = () => {
2020
<div className="settings-header">
2121
<h1 className="settings-title">Settings</h1>
2222
</div>
23+
<<<<<<< HEAD
24+
<div className="containerSettings">
25+
=======
2326
<div className="containerS">
27+
>>>>>>> 35dd92777be9c96bb74d0b87fdf1da3bf587f146
2428
<div className="settings-content-wrapper">
2529
<div className="settings-page">
2630
<SettingsPage />

frontend/src/app/settings/settings.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
width: 100%;
111111
}
112112

113-
.containerS {
113+
.containerSettings {
114114
margin-top: 5rem;
115115
display: flex;
116116
justify-content: center;

0 commit comments

Comments
 (0)