Skip to content

Commit

Permalink
feat(wiki): set fixed width (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreDemailly authored Jan 31, 2025
1 parent 8ffc961 commit 4940742
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions public/components/wiki/wiki.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#documentation-root-element {
max-width: 1000px;
width: 1000px;
height: 80%;
position: absolute;
display: flex;
Expand All @@ -12,7 +12,7 @@

@media screen and (max-width: 1200px) {
#documentation-root-element {
max-width: 600px;
width: 600px;
}
}

Expand Down Expand Up @@ -41,4 +41,5 @@
border-bottom: 2px solid var(--primary);
overflow: hidden;
box-shadow: 2px 2px 30px rgba(20, 20, 20, 0.8);
width: 100%;
}

0 comments on commit 4940742

Please sign in to comment.