darklow / django-suit

Modern theme for Django admin interface
http://djangosuit.com/
Other
2.31k stars 701 forks source link

"suit-left" not displaying #740

Closed TheobaldTGC closed 4 years ago

TheobaldTGC commented 4 years ago

As of Version 77.0.3865.90 chrome no longer displays the sidebar ( suit-left ), even for django-suit demo. Does anyone know why this is the case?

Example: https://djangosuit.com/admin/

Google Chrome Version 77.0.3865.90 (Official Build) (64-bit) MacOS Django version 1.11

image

--edit

Fix that worked for me, only added display: flex;

    <style type="text/css">
        .suit-columns {
            padding-left: 200px;
            padding-right: 40px;
            display: flex;
        }
    </style>