From 2c69a3ae35e38e3a6d3781691f2112b3a99073cb Mon Sep 17 00:00:00 2001 From: Daniil Palagin Date: Mon, 28 Oct 2024 10:44:20 +0100 Subject: [PATCH] [#227] Fix container max-width size --- src/styles/record-manager.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles/record-manager.css b/src/styles/record-manager.css index 8eda2b84..adc700e6 100644 --- a/src/styles/record-manager.css +++ b/src/styles/record-manager.css @@ -41,6 +41,12 @@ body { background-color: #f5f5f5; } +@media (min-width: 1400px) { + .container { + max-width: 1140px; + } +} + .main-view-wrapper { display: flex; flex-direction: column;