diff options
author | luxagraf <sng@luxagraf.net> | 2018-05-05 09:43:05 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-05-05 09:43:05 -0400 |
commit | ee01fffc0722eeb62136434bd596967f6321ddde (patch) | |
tree | 6ef1e6c947b345d4be9a13137b00889a3fb20fba | |
parent | 9a67722e20ec2f35226851ebfc859ef450016e76 (diff) |
fixed a bug in books build
-rw-r--r-- | app/books/urls.py | 2 | ||||
-rw-r--r-- | design/sass/_writing_details.scss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/books/urls.py b/app/books/urls.py index e6737bb..d7ffd33 100644 --- a/app/books/urls.py +++ b/app/books/urls.py @@ -17,7 +17,7 @@ urlpatterns = [ name="list" ), path( - r'<str:slug>/', + r'<str:slug>', views.BookDetailView.as_view(), name='detail', ), diff --git a/design/sass/_writing_details.scss b/design/sass/_writing_details.scss index ece519e..d940244 100644 --- a/design/sass/_writing_details.scss +++ b/design/sass/_writing_details.scss @@ -296,7 +296,7 @@ figure.picwide img.picwide { } } .src .picwide, .h-entry figure.picwide { - margin-left: !important; + margin-left: auto !important; } .picwide960 { clear: both; |