@@ -114,7 +114,7 @@ const Documentation = function Documentation({
114114 disabled = { isFalse ( withCode ) }
115115 className = { ( { selected } ) =>
116116 clsx (
117- 'inline-block text-sm font-medium px-3 py-1 mr-2 last-child:mr-0 rounded-md relative' ,
117+ 'inline-block font-medium px-3 py-1 mr-2 last-child:mr-0 rounded-md relative' ,
118118 selected
119119 ? 'bg-secondary-500 text-secondary-100 cursor-default'
120120 : 'bg-secondary-10 ' ,
@@ -130,7 +130,7 @@ const Documentation = function Documentation({
130130 disabled = { isFalse ( withQuery ) }
131131 className = { ( { selected } ) =>
132132 clsx (
133- 'inline-block text-sm font-medium px-3 py-1 mr-2 last-child:mr-0 rounded-md relative' ,
133+ 'inline-block font-medium px-3 py-1 mr-2 last-child:mr-0 rounded-md relative' ,
134134 selected
135135 ? 'bg-secondary-500 text-secondary-100 cursor-default'
136136 : 'bg-secondary-10 ' ,
@@ -146,7 +146,7 @@ const Documentation = function Documentation({
146146 < Tab . Panels className = "h-full w-full overflow-hidden bg-neutral-10 mt-4 rounded-lg" >
147147 < Tab . Panel
148148 className = { clsx (
149- 'flex flex-col w-full h-full pt-4 relative px-2 overflow-hidden' ,
149+ 'flex flex-col w-full h-full relative px-2 overflow-hidden p-2 ' ,
150150 'ring-white ring-opacity-60 ring-offset-2 ring-offset-blue-400 focus:outline-none focus:ring-2' ,
151151 ) }
152152 >
@@ -158,7 +158,7 @@ const Documentation = function Documentation({
158158 < CodeEditor
159159 extensions = { extensions . concat ( modelExtensions ) }
160160 content = { content }
161- className = "! text-xs"
161+ className = "text-xs"
162162 />
163163 ) }
164164 </ CodeEditor . SQLMeshDialect >
@@ -205,7 +205,7 @@ function Headline({ headline }: { headline: string }): JSX.Element {
205205
206206function NotFound ( ) : JSX . Element {
207207 return (
208- < Container className = "text-sm font-bold whitespace-nowrap w-full h-full" >
208+ < Container className = "font-bold whitespace-nowrap w-full h-full" >
209209 < div className = "flex items-center justify-center w-full h-full" >
210210 Documentation Not Found
211211 </ div >
@@ -249,7 +249,7 @@ function Section({
249249 < >
250250 < Disclosure . Button
251251 className = { clsx (
252- 'flex items-center justify-between rounded-lg text-left text-sm w-full bg-neutral-10 px-3 mb-2' ,
252+ 'flex items-center justify-between rounded-lg text-left w-full bg-neutral-10 px-3 mb-2' ,
253253 className ,
254254 ) }
255255 >
@@ -262,7 +262,7 @@ function Section({
262262 ) }
263263 </ div >
264264 </ Disclosure . Button >
265- < Disclosure . Panel className = "pb-2 text-sm overflow-hidden" >
265+ < Disclosure . Panel className = "pb-2 overflow-hidden" >
266266 < div className = "px-2" > { children } </ div >
267267 </ Disclosure . Panel >
268268 </ >
0 commit comments