Skip to content
Snippets Groups Projects
Unverified Commit 6e6563c2 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #11792 from ramonlsouza/mobile-video-dropdown

Mobile video dropdown size
parents cd985a02 40632c22
No related branches found
No related tags found
No related merge requests found
......@@ -146,6 +146,21 @@
padding: .25rem;
}
}
@include mq($small-only) {
button {
/* should be placed after .dropdownContent
90vh: .dropdownContent height, 85px: navbar, 5rem: actions bar) */
top: calc(90vh - 85px - 5rem);
height: 10vh;
}
}
@include mq($landscape) {
button {
width: calc(100vw - 4rem);
margin-left: 1rem;
}
}
}
.dropdownFireFox {
......@@ -188,6 +203,12 @@
[dir="rtl"] & {
right: 2rem;
}
@include mq($small-only) {
// use 90% of available height (85px: navbar, 5rem: actions bar)
height: calc(90vh - 85px - 5rem);
width: 100vw;
}
}
.dropdownList {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment