Skip to content

Commit

Permalink
fix padding for skip wait button
Browse files Browse the repository at this point in the history
  • Loading branch information
Rost-is-love committed Jul 7, 2023
1 parent dd3cd2f commit b930bf0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions examples/apps/mega-ui/src/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import { Navbar, Text } from '@nextui-org/react'
import { ReactElement } from 'react'
import { useNavigate } from 'react-router-dom'

import Logo from './assets/logo.svg'
import { Box } from './shared'

export const Layout = ({ children }: { children: ReactElement }) => {
const navigate = useNavigate()
const pathName = window.location.pathname

return (
Expand Down
2 changes: 1 addition & 1 deletion examples/apps/workflow-ui/src/Tasks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ const WaitBody = ({
renderer={CountdownTimer}
/>}
{waitDate && skippedWait &&
<Container css={{ height: '65px' }} />}
<Container css={{ height: '65px', p: 0, m: 0 }} />}
{skipButton && !skippedWait &&
<Button
onPress={() => {
Expand Down

0 comments on commit b930bf0

Please sign in to comment.