Skip to content

Commit

Permalink
Increase max width on large screens
Browse files Browse the repository at this point in the history
  • Loading branch information
ccremer committed May 18, 2022
1 parent e58c7b3 commit 166147a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
<link href="/static/bootstrap.min.css" rel="stylesheet">
<script src="/static/bootstrap.min.js" rel="script"></script>
</head>

<style>
@media (min-width: 2000px) {
.container{
max-width: 2000px;
}
}
</style>
<body>
<main class="container">
{{ template "nav" . }}
Expand Down

0 comments on commit 166147a

Please sign in to comment.