From 56fcb384f3f64f3ff4acd292b33ed3eda71c3db1 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Fri, 22 Mar 2024 18:36:50 +0300 Subject: [PATCH] apps/web: change order to laptop --- apps/web/Components/Layout/Page.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/Components/Layout/Page.jsx b/apps/web/Components/Layout/Page.jsx index 9c52f82..b9350d3 100644 --- a/apps/web/Components/Layout/Page.jsx +++ b/apps/web/Components/Layout/Page.jsx @@ -3,7 +3,7 @@ import styled, { css } from 'styled-components'; import { Box } from 'ui/grid'; const order = css` - ${max('laptop-m')} { + ${max('laptop')} { #settings { order: 1; } @@ -25,7 +25,7 @@ export const Grid = styled(Box)` ${order} - ${min('laptop-m')} { + ${min('laptop')} { display: grid; align-items: flex-start; grid-template-columns: 2fr 1fr;