mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 18:13:31 +00:00
Fix portrait mode detection (#582)
* Fix portrait mode detection * Revert changes done on playbar
This commit is contained in:
parent
ec69cc22f9
commit
04b4d92f69
3 changed files with 4 additions and 4 deletions
|
|
@ -41,7 +41,7 @@ const SynchronizedLyricsContainer = styled.div<{ $gap: number }>`
|
|||
transparent 95%
|
||||
);
|
||||
|
||||
@media screen and (width <= 768px) {
|
||||
@media screen and (orientation: portrait) {
|
||||
padding: 5vh 0;
|
||||
}
|
||||
`;
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ const UnsynchronizedLyricsContainer = styled.div<{ $gap: number }>`
|
|||
transparent 95%
|
||||
);
|
||||
|
||||
@media screen and (width <= 768px) {
|
||||
@media screen and (orientation: portrait) {
|
||||
padding: 5vh 0;
|
||||
}
|
||||
`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue