Refactored editor.page.html to use a Vue-style `data()` function for reactive state, adding a new `content` property and cleaning up redundant inline styles. Updated profile-form.html to replace single `error` handling with field-specific `errors.<field>` bindings, improving form validation clarity and user feedback.
18 lines
290 B
CSS
18 lines
290 B
CSS
/* Settings page styles */
|
|
.settings-container {
|
|
padding: 20px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.settings-section {
|
|
margin-bottom: 30px;
|
|
border-bottom: 1px solid #eee;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.settings-title {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 15px;
|
|
color: #333;
|
|
}
|