8 lines
189 B
CSS
8 lines
189 B
CSS
/* Fix left/right scrolling broken with django-import-export #165 */
|
|
.admin-interface table.import-preview {
|
|
display: block;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
overflow: auto;
|
|
}
|