discourse/plugins/chat/assets/stylesheets/common/chat-composer-uploads.scss
Joffrey JAFFEUX 82b4a53d29
FIX: reverts part of thread css (#20286)
This css was causing the view on mobile to take more space than the available width. This was particularly visible with uploads due to a bug preventing the overflow, this is also fixed.
2023-02-14 15:38:26 +01:00

11 lines
180 B
SCSS

.chat-composer-uploads {
max-width: 100%;
.chat-composer-uploads-container {
padding: 0.5rem 10px;
display: flex;
white-space: nowrap;
overflow-x: auto;
}
}