From 60acab98c094a36b3d8db69c53f49ca12045077a Mon Sep 17 00:00:00 2001 From: Ibrahim Awwal Date: Tue, 18 Mar 2025 11:57:29 -0700 Subject: [PATCH] Add bigger breakpoints for container class On big monitors the max width of 1170px is pretty constricted. --- app/assets/stylesheets/blazer/bootstrap.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/assets/stylesheets/blazer/bootstrap.css b/app/assets/stylesheets/blazer/bootstrap.css index e3ab2d65c..5c7ae054b 100644 --- a/app/assets/stylesheets/blazer/bootstrap.css +++ b/app/assets/stylesheets/blazer/bootstrap.css @@ -1596,6 +1596,16 @@ pre code { width: 1170px; } } +@media (min-width: 1600px) { + .container { + width: 1570px; + } +} +@media (min-width: 1900px) { + .container { + width: 1870px; + } +} .container-fluid { padding-right: 15px; padding-left: 15px;