mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
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:
parent
d665f40970
commit
5bf61cb15b
6
.changeset/loud-ears-grab.md
Normal file
6
.changeset/loud-ears-grab.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/audio": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Hide the scroll bar in WaveformControls when it's not necessary
|
@ -318,7 +318,12 @@
|
||||
grid-template-areas:
|
||||
"playback playback"
|
||||
"controls editing";
|
||||
overflow: scroll;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 319px) {
|
||||
.controls {
|
||||
overflow-x: scroll;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user