summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-06-06 11:05:25 +0200
committerGitHub <noreply@github.com>2023-06-06 11:05:25 +0200
commit683373285264c92cb0ed08c73e460ec471479ec3 (patch)
tree5b8d8bcf6781d35fc51212edd8d7d31075fdf532
parent4eda233e09a782df5a935859346a04c10935491e (diff)
Fix autocomplete suggestions being cut off in compose form (#25275)
-rw-r--r--app/javascript/styles/mastodon/components.scss3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index 85348db7c73..8ff0908bf68 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -3113,10 +3113,10 @@ $ui-header-height: 55px;
.compose-form__highlightable {
display: flex;
flex-direction: column;
- overflow: hidden;
flex: 0 1 auto;
border-radius: 4px;
transition: box-shadow 300ms linear;
+ min-height: 0;
&.active {
transition: none;
@@ -3158,7 +3158,6 @@ $ui-header-height: 55px;
.compose-form {
flex: 1;
- overflow-y: hidden;
display: flex;
flex-direction: column;
min-height: 310px;