Hide the scroll bar in WaveformControls when it's not necessary (#8065)

* Hide the scroll bar in WaveformControls when it's not necessary

* add changeset

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
Yuichiro Tachibana (Tsuchiya) 2024-04-23 05:27:39 +01:00 committed by GitHub
parent d665f40970
commit 5bf61cb15b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/audio": patch
"gradio": patch
---
feat:Hide the scroll bar in WaveformControls when it's not necessary

View File

@ -318,7 +318,12 @@
grid-template-areas:
"playback playback"
"controls editing";
overflow: scroll;
}
}
@media (max-width: 319px) {
.controls {
overflow-x: scroll;
}
}