- Added image upload system (JPG/PNG, max 5MB) with live preview and removal option - Fixed Concurrency Exception during deletion (split transactions for reports and entries) - Optimized card layout: consistent height and height-based truncation for descriptions - Added sort direction toggle (Ascending/Descending) with arrow icons for Date, Name, and Year - Refactored HallOfFameService to use streams for Server/Wasm compatibility - Improved error handling and UI feedback for upload and delete operations
17 lines
361 B
CSS
17 lines
361 B
CSS
/* Module Custom Styles */
|
|
|
|
.hof-description-container {
|
|
min-height: 120px;
|
|
/* Adjust this value based on the desired card size */
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.hof-description-line {
|
|
display: block;
|
|
padding-left: 1.1em;
|
|
text-indent: -1.1em;
|
|
margin-bottom: 0.2rem;
|
|
line-height: 1.5;
|
|
word-break: break-word;
|
|
text-align: left;
|
|
} |