Increase editor and preview font sizes to 15px

Enhanced font sizes for improved readability:
• Editor font size increased from 14px to 15px
• Preview font size set to 15px for both #preview and .preview-content
• Better visual experience across all themes and content types

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-01 21:30:57 +05:30
co-authored by Claude
parent dbe57d2fad
commit 256f944b88
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "pan-converter", "name": "pan-converter",
"version": "1.3.2", "version": "1.3.3",
"description": "Cross-platform Markdown editor and converter using Pandoc", "description": "Cross-platform Markdown editor and converter using Pandoc",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {
+1 -1
View File
@@ -171,7 +171,7 @@ function createMenu() {
type: 'info', type: 'info',
title: 'About PanConverter', title: 'About PanConverter',
message: 'PanConverter', message: 'PanConverter',
detail: 'A cross-platform Markdown editor and converter using Pandoc.\n\nVersion: 1.3.2\nAuthor: Amit Haridas\nEmail: amit.wh@gmail.com\nLicense: MIT\n\nFeatures:\n• Tabbed interface for multiple files\n• Advanced markdown editing with live preview\n• Enhanced PDF export with LaTeX engines\n• File association support for .md files\n• Improved preview typography and spacing\n• Find & replace with match highlighting\n• Line numbers and auto-indentation\n• Export to multiple formats via Pandoc\n• PowerPoint & presentation export\n• Export tables to Excel/ODS spreadsheets\n• Document import & conversion\n• Table creation helper\n• Multiple themes support\n• Undo/redo functionality', detail: 'A cross-platform Markdown editor and converter using Pandoc.\n\nVersion: 1.3.3\nAuthor: Amit Haridas\nEmail: amit.wh@gmail.com\nLicense: MIT\n\nFeatures:\n• Tabbed interface for multiple files\n• Advanced markdown editing with live preview\n• Enhanced PDF export with LaTeX engines\n• File association support for .md files\n• Improved preview typography and spacing\n• Enhanced font sizes for better readability\n• Find & replace with match highlighting\n• Line numbers and auto-indentation\n• Export to multiple formats via Pandoc\n• PowerPoint & presentation export\n• Export tables to Excel/ODS spreadsheets\n• Document import & conversion\n• Table creation helper\n• Multiple themes support\n• Undo/redo functionality',
buttons: ['OK'] buttons: ['OK']
}); });
} }
+4 -2
View File
@@ -164,7 +164,7 @@ body {
height: 100%; height: 100%;
padding: 20px; padding: 20px;
font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-family: 'SF Mono', Monaco, 'Courier New', monospace;
font-size: 14px; font-size: 15px;
line-height: 1.6; line-height: 1.6;
border: none; border: none;
outline: none; outline: none;
@@ -181,6 +181,7 @@ body {
margin: 0; margin: 0;
padding: 20px 24px 24px 24px; padding: 20px 24px 24px 24px;
line-height: 1.6; line-height: 1.6;
font-size: 15px;
font-size: 14px; font-size: 14px;
} }
@@ -194,7 +195,7 @@ body {
height: 100%; height: 100%;
padding: 20px; padding: 20px;
font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-family: 'SF Mono', Monaco, 'Courier New', monospace;
font-size: 14px; font-size: 15px;
line-height: 1.6; line-height: 1.6;
border: none; border: none;
outline: none; outline: none;
@@ -209,6 +210,7 @@ body {
#preview { #preview {
max-width: 800px; max-width: 800px;
margin: 0 auto; margin: 0 auto;
font-size: 15px;
} }
/* Status Bar */ /* Status Bar */