Set minimum width for jobs page to ensure content visibility

- Add min-width: 1400px to container
- Ensures all 9 columns are fully visible
- Horizontal scrollbar appears on smaller screens
- Maintains 90vw max-width for large displays
parent 94065d82
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
{% block head %} {% block head %}
<style> <style>
.container { max-width: 1200px; margin: 2rem auto; padding: 0 2rem; } .container { max-width: 90vw; min-width: 1400px; margin: 2rem auto; padding: 0 2rem; }
.jobs-table { background: white; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; } .jobs-table { background: white; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.table-header { padding: 2rem; border-bottom: 1px solid #e5e7eb; } .table-header { padding: 2rem; border-bottom: 1px solid #e5e7eb; }
.table-header h2 { margin: 0; color: #1e293b; } .table-header h2 { margin: 0; color: #1e293b; }
......
Markdown is supported
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