From d89d016f2209597fbde4cfdd047c491ef33fa33d Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Mon, 20 Jun 2022 20:15:30 +0700 Subject: [PATCH] fixed flow cell sizes --- src/styles/_mixins.scss | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/styles/_mixins.scss b/src/styles/_mixins.scss index fccf7be6..8a79149a 100644 --- a/src/styles/_mixins.scss +++ b/src/styles/_mixins.scss @@ -221,7 +221,6 @@ // 2 cells @media (max-width: $cell * 3 + $gap * 2 + 55) { grid-auto-rows: calc(50vw - 40px); - background: yellow; } // < 870px @@ -238,8 +237,8 @@ // < 520px @media (max-width: $cell_mobile) { grid-template-columns: repeat(auto-fill, minmax(calc(50vw - 20px), 1fr)); - grid-template-rows: calc(100vw - 10px) auto calc(50vw - 10px); - background: green; + grid-template-rows: calc(100vw - 10px) auto; + grid-auto-rows: calc(50vw - 10px); } }