Skip to content
Snippets Groups Projects
Commit 32abd58a authored by dcz's avatar dcz
Browse files

Enforce min width of the main page.

parent cad7a81a
No related merge requests found
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
{% vite_asset 'src/main.js' %} {% vite_asset 'src/main.js' %}
</head> </head>
<body style="min-width: 1400px"> <body style="min-width: 1500px">
{% block modals %}{% endblock %} {% block modals %}{% endblock %}
<div class="container-fluid h-100 d-flex flex-column p-0"> <div class="container-fluid h-100 d-flex flex-column p-0">
......
...@@ -92,7 +92,8 @@ class Command(BaseCommand): ...@@ -92,7 +92,8 @@ class Command(BaseCommand):
def handle(self, **options): def handle(self, **options):
import_plWordnet() import_plWordnet()
def import_plWordnet(): def import_plWordnet():
wordnet_dir = os.path.join(BASE_DIR, 'data', 'plwordnet') wordnet_dir = os.path.join(BASE_DIR, 'data', 'plwordnet')
zipped_xml_file = os.path.join(wordnet_dir, 'plwordnet_2_1.xml.zip') zipped_xml_file = os.path.join(wordnet_dir, 'plwordnet_2_1.xml.zip')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment