Skip to content

Commit 8705cc5

Browse files
committed
fix: allow freeform text view resizing
1 parent 0c34e55 commit 8705cc5

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

changelogs/CHANGELOG_alpha.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
* Persist info panel visibility when navigating across classes in data browser ([#2908](https://github.com/parse-community/parse-dashboard/issues/2908)) ([1a3610a](https://github.com/parse-community/parse-dashboard/commit/1a3610a4632be78353db4f511781ca7757a12361))
77

8+
### Bug Fixes
9+
10+
* Allow freeform resizing of text area in config modal
11+
812
# [7.3.0-alpha.15](https://github.com/parse-community/parse-dashboard/compare/7.3.0-alpha.14...7.3.0-alpha.15) (2025-07-15)
913

1014

src/components/Modal/Modal.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
position: absolute;
1313
top: 50%;
1414
left: 50%;
15-
width: 540px;
15+
width: auto;
16+
min-width: 540px;
1617
background: white;
1718
border-radius: 5px;
1819
overflow: hidden;

src/components/TextInput/TextInput.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
width: 100%;
1717
padding: 6px;
1818
vertical-align: top;
19-
resize: vertical;
19+
resize: both;
2020

2121
&:focus {
2222
@include placeholder {

0 commit comments

Comments
 (0)