🎨 Adjust UI styling with reduced padding, border radius, and shadow intensity for a more compact design

This commit is contained in:
2026-01-28 20:20:33 +00:00
parent f4d394ae47
commit 5614a6775b

View File

@@ -805,7 +805,7 @@ onMounted(() => {
<style scoped> <style scoped>
.gamemaster-explorer { .gamemaster-explorer {
min-height: 100vh; min-height: 100vh;
padding: 2rem 1rem; padding: 1rem 0.5rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
} }
@@ -813,9 +813,9 @@ onMounted(() => {
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
background: white; background: white;
border-radius: 12px; border-radius: 8px;
padding: 2rem; padding: 1rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} }
/* Loading & Error States */ /* Loading & Error States */
@@ -1127,9 +1127,9 @@ onMounted(() => {
.content-viewer { .content-viewer {
background: #f8f8f8; background: #f8f8f8;
border: 1px solid #e0e0e0; border: 1px solid #e0e0e0;
border-radius: 8px; border-radius: 6px;
margin-bottom: 1rem; margin-bottom: 1rem;
max-height: 70vh; max-height: 50vh;
overflow: auto; overflow: auto;
} }
@@ -1140,11 +1140,11 @@ onMounted(() => {
} }
.scroller { .scroller {
height: 70vh; height: 50vh;
} }
.lines-container { .lines-container {
padding: 1rem; padding: 0.75rem;
} }
.line { .line {