Skip to content

Commit

Permalink
additional media queries to support 4:3 landscape in fullscreen and n…
Browse files Browse the repository at this point in the history
…ormal mode - solves #104
  • Loading branch information
alex-rind committed Aug 8, 2023
1 parent b09f12a commit cf7245c
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default defineComponent({
}
#chart {
width: 97vmin;
width: 99vmin;
height: 100vmin;
position: relative;
/* background: aqua; */
Expand Down Expand Up @@ -175,9 +175,9 @@ export default defineComponent({
}
*/
@media (min-width: 168vh) {
@media (min-width: 133vh) {
#main {
width: 70vmin;
width: 33vmin;
}
.scrollwrapper {
Expand All @@ -200,4 +200,16 @@ export default defineComponent({
scrollbar-width: none; /* Firefox */
}
}
@media (min-width: 145vh) {
#main {
width: 45vmin;
}
}
@media (min-width: 162vh) {
#main {
width: 62vmin;
}
}
</style>

0 comments on commit cf7245c

Please sign in to comment.