Skip to content

Commit

Permalink
Drop compatible-mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
davepeck committed Mar 29, 2024
1 parent 58f8cb1 commit f475eef
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dj-database-url>=2.1.0
django-browser-reload>=1.12.1
django-htmx>=1,<2
django-stubs[compatible-mypy]>=4.2.7
django-stubs>=4.2.7
django>=5,<6
djlint>=1.34.1
gunicorn>=21,<22
Expand Down
21 changes: 19 additions & 2 deletions server/static/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ html {
* 'wght' (range from 200.0 to 700.0)
*/

@font-face {
font-family: 'Nippo';
src: url('../fonts/Nippo-Variable.woff2') format('woff2'),
Expand All @@ -36,8 +35,26 @@ html {
}


/** Django admin */


/* All containers behave this way. */
.container {
width: 100%;
margin-left: 0.25em;
margin-right: 0.25em;
}


/** md is 768px */
@media screen and (min-width: 768px) {
.container {
max-width: 640px;
margin: 0 auto;
}
}


/** Django admin */
.tabular.inline-related td.original p {
visibility: hidden
}

0 comments on commit f475eef

Please sign in to comment.