🎨 Improve styles (#673)
This commit is contained in:
@@ -24,7 +24,7 @@ import SidebarItems from './SidebarItems'
|
|||||||
const Sidebar: React.FC = () => {
|
const Sidebar: React.FC = () => {
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
const bgColor = useColorModeValue('ui.white', 'ui.dark')
|
const bgColor = useColorModeValue('ui.white', 'ui.dark')
|
||||||
const textColor = useColorModeValue('ui.light', 'ui.white')
|
const textColor = useColorModeValue('ui.dark', 'ui.white')
|
||||||
const secBgColor = useColorModeValue('ui.secondary', 'ui.darkSlate')
|
const secBgColor = useColorModeValue('ui.secondary', 'ui.darkSlate')
|
||||||
const currentUser = queryClient.getQueryData<UserOut>('currentUser')
|
const currentUser = queryClient.getQueryData<UserOut>('currentUser')
|
||||||
const { isOpen, onOpen, onClose } = useDisclosure()
|
const { isOpen, onOpen, onClose } = useDisclosure()
|
||||||
|
@@ -18,7 +18,7 @@ interface SidebarItemsProps {
|
|||||||
|
|
||||||
const SidebarItems: React.FC<SidebarItemsProps> = ({ onClose }) => {
|
const SidebarItems: React.FC<SidebarItemsProps> = ({ onClose }) => {
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
const textColor = useColorModeValue('ui.main', 'ui.light')
|
const textColor = useColorModeValue('ui.main', 'ui.white')
|
||||||
const bgActive = useColorModeValue('#E2E8F0', '#4A5568')
|
const bgActive = useColorModeValue('#E2E8F0', '#4A5568')
|
||||||
const currentUser = queryClient.getQueryData<UserOut>('currentUser')
|
const currentUser = queryClient.getQueryData<UserOut>('currentUser')
|
||||||
|
|
||||||
|
@@ -1,68 +0,0 @@
|
|||||||
:root {
|
|
||||||
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-weight: 400;
|
|
||||||
|
|
||||||
color-scheme: light dark;
|
|
||||||
color: rgba(255, 255, 255, 0.87);
|
|
||||||
background-color: #242424;
|
|
||||||
|
|
||||||
font-synthesis: none;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
font-weight: 500;
|
|
||||||
color: #646cff;
|
|
||||||
text-decoration: inherit;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #535bf2;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
display: flex;
|
|
||||||
place-items: center;
|
|
||||||
min-width: 320px;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 3.2em;
|
|
||||||
line-height: 1.1;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
border-radius: 8px;
|
|
||||||
border: 1px solid transparent;
|
|
||||||
padding: 0.6em 1.2em;
|
|
||||||
font-size: 1em;
|
|
||||||
font-weight: 500;
|
|
||||||
font-family: inherit;
|
|
||||||
background-color: #1a1a1a;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: border-color 0.25s;
|
|
||||||
}
|
|
||||||
button:hover {
|
|
||||||
border-color: #646cff;
|
|
||||||
}
|
|
||||||
button:focus,
|
|
||||||
button:focus-visible {
|
|
||||||
outline: 4px auto -webkit-focus-ring-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
:root {
|
|
||||||
color: #213547;
|
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #747bff;
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,4 +1,4 @@
|
|||||||
import { Container, Text } from '@chakra-ui/react'
|
import { Box, Container, Text } from '@chakra-ui/react'
|
||||||
import { useQueryClient } from 'react-query'
|
import { useQueryClient } from 'react-query'
|
||||||
import { createFileRoute } from '@tanstack/react-router'
|
import { createFileRoute } from '@tanstack/react-router'
|
||||||
|
|
||||||
@@ -15,11 +15,13 @@ function Dashboard() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Container maxW="full" pt={12}>
|
<Container maxW="full">
|
||||||
|
<Box pt={12} m={4}>
|
||||||
<Text fontSize="2xl">
|
<Text fontSize="2xl">
|
||||||
Hi, {currentUser?.full_name || currentUser?.email} 👋🏼
|
Hi, {currentUser?.full_name || currentUser?.email} 👋🏼
|
||||||
</Text>
|
</Text>
|
||||||
<Text>Welcome back, nice to see you again!</Text>
|
<Text>Welcome back, nice to see you again!</Text>
|
||||||
|
</Box>
|
||||||
</Container>
|
</Container>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
@@ -13,9 +13,8 @@ const theme = extendTheme({
|
|||||||
secondary: '#EDF2F7',
|
secondary: '#EDF2F7',
|
||||||
success: '#48BB78',
|
success: '#48BB78',
|
||||||
danger: '#E53E3E',
|
danger: '#E53E3E',
|
||||||
light: '#E2E8F0',
|
|
||||||
dark: '#1A202C',
|
|
||||||
white: '#FFFFFF',
|
white: '#FFFFFF',
|
||||||
|
dark: '#1A202C',
|
||||||
darkSlate: '#252D3D',
|
darkSlate: '#252D3D',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user