Commit bcd4c7d88c7e5deaae7496dfba348b981a945f07
1 parent
c1aba617
fix player title
Showing
2 changed files
with
10 additions
and
1 deletions
src/css/mobile.css
| ... | ... | @@ -24,7 +24,11 @@ |
| 24 | 24 | display: flex; |
| 25 | 25 | justify-content: space-between; |
| 26 | 26 | padding: 0 24px; |
| 27 | - border-bottom: 1px solid #eee; } | |
| 27 | + border-bottom: 1px solid #eee; | |
| 28 | + white-space: nowrap; | |
| 29 | + overflow: auto; } | |
| 30 | + .m-title-wrap .m-title, .m-title-wrap .m-menu { | |
| 31 | + padding-right: 12px; } | |
| 28 | 32 | .CodeMirror-gutter { |
| 29 | 33 | width: 24px !important; |
| 30 | 34 | min-width: 24px !important; } | ... | ... |
src/scss/mobile.scss
| ... | ... | @@ -32,6 +32,11 @@ |
| 32 | 32 | justify-content: space-between; |
| 33 | 33 | padding: 0 24px; |
| 34 | 34 | border-bottom: 1px solid #eee; |
| 35 | + white-space: nowrap; | |
| 36 | + overflow: auto; | |
| 37 | + .m-title, .m-menu{ | |
| 38 | + padding-right: 12px; | |
| 39 | + } | |
| 35 | 40 | } |
| 36 | 41 | .CodeMirror-gutter { |
| 37 | 42 | width: 24px !important; | ... | ... |