@@ -206,7 +206,7 @@ export const BaseBlinkLayout = ({
206206 { image && (
207207 < Linkable
208208 url = { websiteUrl }
209- className = "block max-h-[100cqw] overflow-y-hidden px-5 pt-5 "
209+ className = "px-padding pt-padding block max-h-[100cqw] overflow-y-hidden"
210210 >
211211 < img
212212 className = { clsx (
@@ -217,8 +217,8 @@ export const BaseBlinkLayout = ({
217217 />
218218 </ Linkable >
219219 ) }
220- < div className = "flex flex-col p-5 " >
221- < div className = "mb-1 flex items-center gap-2" >
220+ < div className = "px-padding pb-padding pt-gap flex flex-col" >
221+ < div className = "mb-1.5 flex items-center gap-2" >
222222 { websiteUrl && (
223223 < a
224224 href = { websiteUrl }
@@ -265,10 +265,10 @@ export const BaseBlinkLayout = ({
265265 ) }
266266 </ a >
267267 </ div >
268- < span className = "text-text text-text-primary mb-1.5 break-words font-semibold" >
268+ < span className = "text-text text-text-primary mb-1 break-words font-semibold" >
269269 { title }
270270 </ span >
271- < span className = "text-subtext text-text-secondary mb-4 break-words" >
271+ < span className = "text-subtext text-text-secondary mb-gap break-words" >
272272 { description && < SimpleMarkdown text = { description } /> }
273273 </ span >
274274 { ! supportability . isSupported ? (
@@ -277,7 +277,7 @@ export const BaseBlinkLayout = ({
277277 < >
278278 { disclaimer && (
279279 < DisclaimerBlock
280- className = "mb-4 "
280+ className = "mb-gap "
281281 type = { disclaimer . type }
282282 ignorable = { disclaimer . ignorable }
283283 hidden = {
@@ -299,12 +299,12 @@ export const BaseBlinkLayout = ({
299299 buttons = { buttons }
300300 />
301301 { success && (
302- < span className = "text-subtext text-text-success mt-1.5 flex justify-center" >
302+ < span className = "text-subtext text-text-success mt-between-inputs flex justify-center" >
303303 { success }
304304 </ span >
305305 ) }
306306 { error && ! success && (
307- < span className = "text-subtext text-text-error mt-1.5 flex justify-center" >
307+ < span className = "text-subtext text-text-error mt-between-inputs flex justify-center" >
308308 { error }
309309 </ span >
310310 ) }
@@ -337,9 +337,9 @@ export const ActionContent = ({
337337 }
338338
339339 return (
340- < div className = "flex flex-col gap-4 " >
340+ < div className = "gap-between-inputs flex flex-col" >
341341 { buttons && buttons . length > 0 && (
342- < div className = "flex flex-wrap items-center gap-2 " >
342+ < div className = "gap-between-buttons flex flex-wrap items-center" >
343343 { buttons ?. map ( ( it , index ) => (
344344 < div
345345 key = { index }
@@ -397,7 +397,7 @@ const ActionForm = ({ form }: Required<Pick<InnerLayoutProps, 'form'>>) => {
397397 const disabled = Object . values ( validity ) . some ( ( v ) => ! v ) ;
398398
399399 return (
400- < div className = "flex flex-col gap-3 " >
400+ < div className = "gap-between-inputs flex flex-col" >
401401 { form . inputs . map ( ( input ) => (
402402 < ActionInputFactory
403403 key = { input . name }
0 commit comments