Skip to content

Commit 93b0a17

Browse files
committed
Fix : [#2973] Edited CSS to resolve the issue.
1 parent 91e5b79 commit 93b0a17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/modules/User/components/CollectionCreate.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const CollectionCreate = () => {
7171
value={description}
7272
onChange={(e) => setDescription(e.target.value)}
7373
placeholder={t('CollectionCreate.DescriptionPlaceholder')}
74-
rows="4"
74+
rows="6"
7575
/>
7676
</p>
7777
<Button type="submit" disabled={invalid}>

client/styles/components/_forms.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575

7676
.form__input-flexible-height {
7777
height: auto;
78+
resize: none;
7879
}
7980

8081
.form__input::placeholder {

client/styles/components/_overlay.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@
2424
display: flex;
2525
flex-wrap: wrap;
2626
flex-flow: column;
27-
max-height: 80%;
2827
max-width: 80%;
2928
position: relative;
30-
padding-bottom: #{math.div(25, $base-font-size)}rem;
29+
padding-bottom: #{math.div(12, $base-font-size)}rem;
3130

3231
@media (max-width: 650px) {
3332
max-width: 100%;

0 commit comments

Comments
 (0)