diff options
-rw-r--r-- | assets/css/_room.less | 4 | ||||
-rw-r--r-- | model/Stream.php | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/assets/css/_room.less b/assets/css/_room.less index cfffbd8..3202a87 100644 --- a/assets/css/_room.less +++ b/assets/css/_room.less @@ -7,10 +7,6 @@ body.room { } } - .player-wrap.tab-content { - padding: 40px 0; - } - .video.hd .player-wrap.tab-content { padding: 0; } diff --git a/model/Stream.php b/model/Stream.php index d6ce5ef..718ed98 100644 --- a/model/Stream.php +++ b/model/Stream.php @@ -42,9 +42,9 @@ class Stream switch($this->getSelection()) { case 'sd': - case 'slides': return array(1024, 576); + case 'slides': case 'hd': return array(1920, 1080); |