Skip to content

Commit

Permalink
web: Improve responsiveness on small viewports (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
antangelo authored Dec 16, 2023
1 parent 2bbf8f7 commit cdd5118
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions xdvdfs-web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XISO Tool</title>

<!-- Style dependencies -->
Expand Down Expand Up @@ -30,6 +31,18 @@
border-color: #8dc103;
}

@media screen and (max-width: 992px) {
.xiso_main {
width: 100%;
}
}

@media screen and (min-width: 992px) {
.xiso_main {
min-width: 992px
}
}

.xiso_dark {
background: #303030;
}
Expand Down

0 comments on commit cdd5118

Please sign in to comment.