Skip to content

Commit

Permalink
Merge pull request #726 from basedosdados/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
AldemirLucas authored Nov 6, 2023
2 parents 3f1fedd + fd89156 commit d5fb73b
Show file tree
Hide file tree
Showing 19 changed files with 2,412 additions and 376 deletions.
1 change: 1 addition & 0 deletions next/components/atoms/GreenTab.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Tab } from "@chakra-ui/tabs";
export default function GreenTab({ children, ...style }) {
return (
<Tab
fontFamily="ubuntu"
fontSize="18px"
fontWeight="400"
letterSpacing="0.1px"
Expand Down
6 changes: 4 additions & 2 deletions next/components/molecules/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,18 @@ function FooterLink(props) {
)
}

export default function Footer({ pages }) {
export default function Footer({ pages, ocult = false }) {
const mobileCheck = useCheckMobile()
const [isMobileMod, setIsMobileMod] = useState(false)

useEffect(() => {
setIsMobileMod(mobileCheck)
},[])

if(ocult === true) return null

return (
<VStack
<VStack
position="relative"
zIndex="10"
width="100%"
Expand Down
4 changes: 2 additions & 2 deletions next/components/molecules/FormTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ export default function FormTable({
</Stack>

<Modal isCentered isOpen={isOpen} onClose={onClose}>
<ModalOverlay />
<ModalContent>
<ModalOverlay/>
<ModalContent margin="24px">
<ModalHeader>Deletar table</ModalHeader>
<ModalBody>
Você tem certeza em deletar esse table? Uma vez deletada, todas as informações dele e de Columns serão excluídas em consequência.
Expand Down
Loading

0 comments on commit d5fb73b

Please sign in to comment.