mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 04:13:39 +08:00
82b4a53d29
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.
11 lines
180 B
SCSS
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;
|
|
}
|
|
}
|