Skip to content

Commit

Permalink
Add mobile support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindful-Developer committed Jul 24, 2023
1 parent cd54820 commit 80f4c27
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CSS/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ main {
padding: 0 40px;
overflow-y: scroll;
overflow-x: hidden;
overflow-wrap: break-word;
}

#breadcrumb {
Expand Down Expand Up @@ -296,4 +297,27 @@ pre {
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
body {
padding: 0;
}

nav {
display: none;
}

main {
padding: 0 20px;
}

#breadcrumbDiv {
flex-direction: column-reverse;
align-items: flex-start;
}

.full-description {
font-size: 16px;
}
}

0 comments on commit 80f4c27

Please sign in to comment.