Skip to content

Commit

Permalink
bugFixed-questdb#128
Browse files Browse the repository at this point in the history
  • Loading branch information
SyedImtiyaz-1 committed Apr 18, 2023
1 parent e4e151b commit a27e0e1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/web-console/src/scenes/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ const Wrapper = styled.div`
const LeftContainer = styled.div`
display: flex;
padding-left: 1rem;
margin-top: 10px;
align-items: center;
flex: 1;
`
Expand All @@ -63,6 +62,11 @@ const RightContainer = styled.div`
margin-right: 1rem;
}
`
const FooterText = styled(Text)`
@media (max-width: 400px) {
margin-top: 12px;
}
`;

const GithubBannerTransition = createGlobalStyle`
.github-banner-enter {
Expand Down Expand Up @@ -110,9 +114,9 @@ const Footer = () => {
return (
<Wrapper id="footer">
<LeftContainer>
<Text color="draculaForeground">
<FooterText color="draculaForeground">
Copyright &copy; {new Date().getFullYear()} QuestDB
</Text>
</FooterText>
</LeftContainer>
<RightContainer>
<ConnectionStatus />
Expand Down

0 comments on commit a27e0e1

Please sign in to comment.