Skip to content
Merged
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
20 changes: 13 additions & 7 deletions frontend/vite-project/src/Profile.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
padding: 40px;
max-width: 600px;
margin: 0 auto;
}

.message {
Expand Down Expand Up @@ -143,10 +145,11 @@
}

.form-input {
padding: 10px;
border: 1px solid #ccc;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
font-size: 16px;
transition: border-color 0.2s;
}

.form-input:focus {
Expand All @@ -159,16 +162,18 @@
display: flex;
gap: 10px;
margin-top: 20px;
justify-content: center;
}

.save-btn {
padding: 10px 20px;
padding: 12px 30px;
background-color: #28a745;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-size: 16px;
font-weight: 500;
transition: background-color 0.2s;
}

Expand All @@ -177,13 +182,14 @@
}

.cancel-btn {
padding: 10px 20px;
padding: 12px 30px;
background-color: #6c757d;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-size: 16px;
font-weight: 500;
transition: background-color 0.2s;
}

Expand Down
Loading