diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a3b0151..438f72b24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ All notable changes to this project will be documented in this file. - Optimized release data fetching. - Optimized list loading. - Removed fixture length check from test. +- Fixed screen root style bug. ### NB! Prior to 3.x the project was split into separate repositories diff --git a/assets/client/components/screen.jsx b/assets/client/components/screen.jsx index 2560f6d17..17cdce9b3 100644 --- a/assets/client/components/screen.jsx +++ b/assets/client/components/screen.jsx @@ -26,8 +26,8 @@ function Screen({ screen }) { const rootStyle = { gridTemplateAreas: createGrid(configColumns, configRows), - gridTemplateColumns: gridTemplateRows, - gridTemplateRows: gridTemplateColumns, + gridTemplateColumns, + gridTemplateRows, }; const refreshColorScheme = () => {