resolves padding inconsistency in header bar, renames home

This commit is contained in:
Gavin Atkinson 2020-11-03 16:22:56 -08:00
parent 2834d6b2e6
commit 38c927a6f0
3 changed files with 4 additions and 4 deletions

View File

@ -43,6 +43,7 @@ export default class LaunchApp extends React.Component {
gridTemplateColumns='repeat(auto-fill, minmax(128px, 1fr))' gridTemplateColumns='repeat(auto-fill, minmax(128px, 1fr))'
gridGap={3} gridGap={3}
p={2} p={2}
pt={0}
> >
<Tile <Tile
bg="transparent" bg="transparent"
@ -55,9 +56,9 @@ export default class LaunchApp extends React.Component {
<Icon <Icon
color="white" color="white"
// fill="rgba(0,0,0,0)" // fill="rgba(0,0,0,0)"
icon="Home" icon="Boot"
/> />
<Text ml="1" mt='1px' color="white">Home</Text> <Text ml="1" mt='1px' color="white">DMs + Drafts</Text>
</Row> </Row>
</Box> </Box>
</Tile> </Tile>

View File

@ -20,7 +20,7 @@ const StatusBar = (props) => {
gridTemplateColumns="3fr 1fr" gridTemplateColumns="3fr 1fr"
py='3' py='3'
px='3' px='3'
pb='2' pb='3'
> >
<Row collapse> <Row collapse>
<Button borderColor='washedGray' mr='2' px='2' onClick={() => props.history.push('/')} {...props}> <Button borderColor='washedGray' mr='2' px='2' onClick={() => props.history.push('/')} {...props}>

View File

@ -116,7 +116,6 @@ export function Sidebar(props: SidebarProps) {
borderRightColor="washedGray" borderRightColor="washedGray"
overflowY="scroll" overflowY="scroll"
fontSize={0} fontSize={0}
bg="white"
position="relative" position="relative"
> >
<GroupSwitcher <GroupSwitcher