Skip to content

Commit 798a508

Browse files
authored
fix(text-area): add gap to resize sample (#971)
1 parent d5a66a7 commit 798a508

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
/* shared styles are loaded from: */
2-
/* https://static.infragistics.com/xplatform/css/samples */
2+
/* https://static.infragistics.com/xplatform/css/samples */
3+
4+
.container {
5+
display: flex;
6+
flex-direction: column;
7+
gap: 1rem;
8+
}

samples/inputs/textarea/resize/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css';
77
export default function TextAreaResize() {
88

99
return (
10-
<div className="sample">
10+
<div className="sample container">
1111
<IgrTextarea label="Resize: none" resize="none">
1212
<p slot="helper-text">This textarea does not resize and uses a scroll bar to show overflow text.</p>
1313
</IgrTextarea>

0 commit comments

Comments
 (0)