diff options
| author | kj-sh604 | 2025-04-11 16:40:56 -0400 |
|---|---|---|
| committer | kj-sh604 | 2025-04-11 16:40:56 -0400 |
| commit | 8e11473cb8cb4e8196a90e07da91d59294798473 (patch) | |
| tree | 3ecc24de222ea1f8b60d2ddb974c6ec7d687c6dc /src/includes/markdown-editor.php | |
| parent | dd5667c413fba28216040977025cad2c454f914d (diff) | |
refactor: performance improvements
Diffstat (limited to 'src/includes/markdown-editor.php')
| -rw-r--r-- | src/includes/markdown-editor.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/includes/markdown-editor.php b/src/includes/markdown-editor.php index fa68bb8..22551a0 100644 --- a/src/includes/markdown-editor.php +++ b/src/includes/markdown-editor.php @@ -3,7 +3,7 @@ <h2 class="centered">markdown goes here:</h2> </label> <form action="index.php" method="post"> - <textarea id="user-input" name="user-input" rows="8" cols="80"><?php echo $_SESSION['user-input'] ?? ''; ?></textarea> + <textarea id="user-input" name="user-input" style="width: 50rem; height: 25.625rem;"><?php echo $_SESSION['user-input'] ?? ''; ?></textarea> <div class="centered"> <button type="submit" name="compile">create presentation</button> </div> |
