mirror of
https://github.com/He4eT/elseifplayer.git
synced 2026-05-05 01:17:22 +00:00
PlayerView: show separators on small screen
This commit is contained in:
parent
1cf0095b53
commit
ecc79f135c
3 changed files with 13 additions and 2 deletions
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
background-color: var(--bg-color);
|
||||
border: var(--border-width) solid var(--main-color);
|
||||
border-top: var(--separator-width) solid var(--main-color);
|
||||
padding: var(--inner-padding);
|
||||
margin: 0;
|
||||
margin-top: var(--input-box-margin);
|
||||
|
|
@ -73,7 +74,7 @@
|
|||
.ifplayer .output .gridBuffer {
|
||||
flex-shrink: 0;
|
||||
max-height: 100%;
|
||||
border-bottom: var(--border-width) solid var(--main-color);
|
||||
border-bottom: var(--separator-width) solid var(--main-color);
|
||||
}
|
||||
|
||||
.ifplayer .output .textBuffer {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
body {
|
||||
--outer-padding: 0px;
|
||||
--border-width: 0px;
|
||||
--separator-width: 2px;
|
||||
--inner-padding: 8px;
|
||||
--input-box-margin: 0px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,12 @@
|
|||
.app.play, .app.focus {
|
||||
.app.play,
|
||||
.app.focus {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 800px) {
|
||||
.app.play main,
|
||||
.app.focus main {
|
||||
max-height: 90%;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue