diff options
| author | kj-sh604 | 2025-04-11 16:57:33 -0400 |
|---|---|---|
| committer | kj-sh604 | 2025-04-11 16:57:33 -0400 |
| commit | 7fc80224051ba24e4cf135efdeeacf2dfbd0e4de (patch) | |
| tree | d6e9d92ceaa2ecdbeb292cb13d7372e082f61269 /src/includes/markdown-editor.php | |
| parent | 7d4b6cea82bff234c7fd2362fddc1c8ccb4882ee (diff) | |
refactor: mobile responsiveness considerations
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 1e5b7fe..d713217 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" style="width: 50rem; height: 25.5rem;"><?php echo $_SESSION['user-input'] ?? ''; ?></textarea> + <textarea id="user-input" name="user-input" style="max-width: 50rem; width: 100%; height: 25.5rem;"><?php echo $_SESSION['user-input'] ?? ''; ?></textarea> <div class="centered"> <button type="submit" name="compile">create presentation</button> </div> |
