From 4a3fe7917ed9d5519006bc12f8b77f4550c32d13 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 25 Oct 2024 23:09:19 +0530 Subject: [PATCH] feat: media queries 1024 --- src/index.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index ca2cd1f6..457f850b 100644 --- a/src/index.css +++ b/src/index.css @@ -69,8 +69,16 @@ code { position: relative; } +@media (min-width: 1024px) and (max-width: 1211px) { + #browser-recorder { + box-sizing: border-box; + height: 100vh; + margin: 0; + } +} + /* For laptops (between 1024px and 1440px) */ -@media (min-width: 1024px) and (max-width: 1440px) { +@media (min-width: 1211px) and (max-width: 1440px) { #browser-recorder { box-sizing: border-box; height: calc(100vh - 0.6rem);