Skip to content

Commit

Permalink
Bug: The imp.html is responsive now
Browse files Browse the repository at this point in the history
  • Loading branch information
RohithNair27 committed Oct 20, 2024
1 parent 2c6b99a commit 996a239
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions impstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ body {
);
margin: 0;
padding: 20px;
overflow: hidden;
height: 100vh;
/* overflow: hidden; */
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
Expand All @@ -26,7 +26,8 @@ body {
display: flex;
justify-content: space-around;
align-items: center;
height: 70vh;
min-height: 70vh;
/* border:1px black solid */
}

.toggle-container {
Expand Down Expand Up @@ -56,3 +57,14 @@ body {
color: #555;
font-family: 'Londrina Outline', cursive;
}

@media only screen and (max-width: 1100px) {
.contain {
flex-direction: column;
width: fit-content;
}
.toggle-container {
width: 70%;
margin-bottom: 12px;
}
}

0 comments on commit 996a239

Please sign in to comment.