From b014c79c5b5b9ff7098c5face4ba78adab11e8af Mon Sep 17 00:00:00 2001 From: evyatarmeged Date: Wed, 10 Apr 2024 12:09:34 +0300 Subject: [PATCH] Hide postgres related links and tutorials --- docs/features/postgresql/_category_.json | 1 + docs/getting-started/README.mdx | 15 ++++++++------- src/css/custom.css | 4 ++++ 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/docs/features/postgresql/_category_.json b/docs/features/postgresql/_category_.json index 94a4efd26..233ddc86c 100644 --- a/docs/features/postgresql/_category_.json +++ b/docs/features/postgresql/_category_.json @@ -2,6 +2,7 @@ "label": "PostgreSQL", "position": 5, "collapsed": true, + "className": "hideme", "customProps": { "image": "/img/icons/postgresql-no-word-mark.svg" } diff --git a/docs/getting-started/README.mdx b/docs/getting-started/README.mdx index 2e6928edd..02c374b61 100644 --- a/docs/getting-started/README.mdx +++ b/docs/getting-started/README.mdx @@ -34,17 +34,18 @@ export const features = [ icon: '/img/icons/kafka-no-word-mark.svg', url: '/features/kafka/' }, - { - title: 'PostgreSQL', - icon: '/img/icons/postgresql-no-word-mark.svg', - url: '/features/postgresql/' - }, { title: 'Istio', icon: '/img/icons/istio-no-word-mark.svg', url: '/features/istio/' - }, -]; + }]; + +[//]: # ({) +[//]: # (title: 'PostgreSQL',) +[//]: # ( icon: '/img/icons/postgresql-no-word-mark.svg',) +[//]: # ( url: '/features/postgresql/') +[//]: # ( },) + export const tutorials_access = [ { diff --git a/src/css/custom.css b/src/css/custom.css index 403a55a7b..4935b0550 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -397,3 +397,7 @@ footer .container-fluid { .dropdown > .navbar__link:after { display: none; } + +.hideme { + display: none !important; +} \ No newline at end of file