-
{dashboard.name}
+
+ {dashboard.name}
+
{dashboard.description &&
{dashboard.description}
}
{dashboard.screenshots.map((imgUrl) => {
return (
);
})}
diff --git a/src/components/QuickstartDataSources.js b/src/components/QuickstartDataSources.js
index 608f9285..ea8530b2 100644
--- a/src/components/QuickstartDataSources.js
+++ b/src/components/QuickstartDataSources.js
@@ -72,13 +72,14 @@ const QuickstartDataSources = ({ quickstart }) => {
`}
/>
-
{doc.name}
-
+
{doc.description &&
diff --git a/src/components/QuickstartHowToUse.js b/src/components/QuickstartHowToUse.js
index 5cd1b81a..99cecbc6 100644
--- a/src/components/QuickstartHowToUse.js
+++ b/src/components/QuickstartHowToUse.js
@@ -26,36 +26,47 @@ const QuickstartHowToUse = ({
}
@media screen and (max-width: 760px){
- display: grid;
- grid-template-columns: repeat(1, 1fr);
margin-left: 40px;
margin-right: 23px;
}
+
+ @media not all and (min-resolution:.001dpcm) and max-width: 760px {
+ @media {
+ grid-template-columns: repeat(1, 1fr);
+ margin-left: 40px;
+ margin-right: 23px;
+ }}
`}>
-
-
- How to use this quickstart
-
-
+ >
+ How to use this quickstart
+
diff --git a/src/components/QuickstartOverview.js b/src/components/QuickstartOverview.js
index 59a266ab..7be56ded 100644
--- a/src/components/QuickstartOverview.js
+++ b/src/components/QuickstartOverview.js
@@ -44,10 +44,12 @@ const QuickstartOverview = ({ quickstart }) => {
skipHtml
allowedElements={allowedElements}
css={css`
+ @media screen and (max-width: 760px){
width: fit-content;
- margin: 40px;
- @media screen and (min-width: 1440px) {
- margin: 104px 156px;
+ margin: 40px 70px 40px 58px;
+ }
+ @media screen and (min-width: 760px) {
+ margin: 104px 155px 104px 168px;
}
`}
>
diff --git a/src/components/WhatsIncluded/Alerts.js b/src/components/WhatsIncluded/Alerts.js
index 5b0d18da..ee003ace 100644
--- a/src/components/WhatsIncluded/Alerts.js
+++ b/src/components/WhatsIncluded/Alerts.js
@@ -14,28 +14,39 @@ const Alerts = ({ quickstart }) => {
@media (min-width: 760px) {
margin-left: 156px;
- // margin-right: 155px;
}
@media (max-width: 760px) {
margin-left: 40px;
margin-right: 23px;
}
+
+ @media not all and (min-resolution:.001dpcm) and max-width: 760px {
+ @media {
+ grid-template-columns: repeat(1, 1fr);
+ margin-left: 40px;
+ margin-right: 23px;
+ }}
+
+ h6{
+ font-weight: 400;
+ }
`}
>
-
+
Alerts
{quickstart.alerts.length}
-
+
{quickstart.alerts?.length > 0 ? (
) : (
diff --git a/src/components/WhatsIncluded/Dashboards.js b/src/components/WhatsIncluded/Dashboards.js
index 890cb238..4a43affa 100644
--- a/src/components/WhatsIncluded/Dashboards.js
+++ b/src/components/WhatsIncluded/Dashboards.js
@@ -9,8 +9,13 @@ const Dashboards = ({ quickstart }) => {
return (
{
margin-right: 23px;
}
+
+ @media not all and (min-resolution:.001dpcm) and max-width: 760px {
+ @media {
+ grid-template-columns: repeat(1, 1fr);
+ margin-left: 40px;
+ margin-right: 23px;
+ }}
`}
>
-
+
What's included?
-
-
+
+
Dashboard
{quickstart.dashboards.length}
-
+
{quickstart.dashboards?.length > 0 ? (
) : (
diff --git a/src/components/WhatsIncluded/DataSources.js b/src/components/WhatsIncluded/DataSources.js
index 07370b44..d2a5634c 100644
--- a/src/components/WhatsIncluded/DataSources.js
+++ b/src/components/WhatsIncluded/DataSources.js
@@ -19,21 +19,33 @@ const DataSources = ({ quickstart }) => {
margin-left: 40px;
margin-right: 23px;
}
+
+ @media not all and (min-resolution:.001dpcm) and max-width: 760px {
+ @media {
+ grid-template-columns: repeat(1, 1fr);
+ margin-left: 40px;
+ margin-right: 23px;
+ }}
+
+ h6{
+ font-weight: 400;
+ }
`}
>
-
+
Data Sources
{quickstart.documentation.length}
-
+
{quickstart.documentation?.length > 0 ? (
) : (
diff --git a/src/components/styles.scss b/src/components/styles.scss
index 6d42148d..45833328 100644
--- a/src/components/styles.scss
+++ b/src/components/styles.scss
@@ -1,12 +1,13 @@
:root {
--height-mobile-nav-bar: 60px;
--ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
- --link-font-color: black;
+ --link-font-color: #1D252C;
--hover-color: #1D252C;
--white-hover-color: #F9FAFA;
--background-color: #1D252C;
- --btn-text-color: white;
+ --btn-text-color: #F9FAFA;
--black-text-color : #1D252C;
+ --background-grey-color : #D6D6D6;
}
h1,h2,h3{
font-family: 'Söhne-Kräftig';
@@ -93,8 +94,4 @@ input[type='text'] {
float: left;
justify-content: center;
align-items: center;
-}
-
-.e132irl20 {
- font-weight: none;
}
\ No newline at end of file
diff --git a/src/layouts/QuickStartLayout.js b/src/layouts/QuickStartLayout.js
index 7a9cdb19..69f27cf6 100644
--- a/src/layouts/QuickStartLayout.js
+++ b/src/layouts/QuickStartLayout.js
@@ -7,10 +7,9 @@ import {
import PropTypes from 'prop-types';
import { css } from '@emotion/react';
import '../components/styles.scss';
-import '../components/fonts.scss';
import { QUICKSTARTS_COLLAPSE_BREAKPOINT } from '../data/constants';
-import '../components/fonts.scss';
import Layout from '../components/Layout';
+import '../components/fonts.scss';
const QuickStartLayout = ({ children }) => {
return (