From 9c782b7cd12b87932c0a664b2ef1b0247e305283 Mon Sep 17 00:00:00 2001 From: Pritimay Sarkar Date: Thu, 16 Nov 2023 16:21:32 +0530 Subject: [PATCH] add css --- src/components/TestAnalytics.css | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/src/components/TestAnalytics.css b/src/components/TestAnalytics.css index 02fd9a8..4df1a2f 100644 --- a/src/components/TestAnalytics.css +++ b/src/components/TestAnalytics.css @@ -1,17 +1,38 @@ -.container { +.analytics-page::-webkit-scrollbar { + display: none; +} + +.analytics-title::-webkit-scrollbar { + display: none; +} + +.analytics-page { + width: 100vw; +} + +.analytics-container { display: flex; flex-direction: column; align-items: center; justify-content: center; - height: 50vh; + font-family: sans-serif; +} + +.analytics-title { + padding: 10px; + text-align: center; + background: rgb(207, 235, 250); + color: black; + font-size: 30px; + font-family: sans-serif; } @media screen and (min-width: 900px) { - .container { + .analytics-container { display: flex; flex-direction: row; align-items: center; justify-content: center; - height: 50vh; + height: 45vh; } } \ No newline at end of file