1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 21:32:35 +02:00

Add title question in devops roadmap

This commit is contained in:
Kamran Ahmed
2025-02-26 18:42:30 +00:00
parent d6ee7ef76a
commit 2544d4b12d

View File

@@ -33,7 +33,7 @@ export function RoadmapTitleQuestion(props: RoadmapTitleQuestionProps) {
return ( return (
<div <div
className={cn( className={cn(
'relative hidden rounded-b-[5px] border-t bg-white text-sm font-medium hover:bg-gray-50 sm:block', 'relative block rounded-b-[5px] border-t bg-white text-sm font-medium hover:bg-gray-50 sm:block',
{ {
'rounded-0 -mx-4 sm:mx-0': isAnswerVisible, 'rounded-0 -mx-4 sm:mx-0': isAnswerVisible,
// @FIXME: // @FIXME:
@@ -41,7 +41,6 @@ export function RoadmapTitleQuestion(props: RoadmapTitleQuestionProps) {
// the frontend roadmap. This is because we did not use to have the question // the frontend roadmap. This is because we did not use to have the question
// on mobile devices before and we don't want to cause any SEO issues. It will // on mobile devices before and we don't want to cause any SEO issues. It will
// be enabled on other roadmaps in the future. // be enabled on other roadmaps in the future.
block: roadmapId === 'frontend',
}, },
)} )}
> >