mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
interface: square buttons; home: squash group key squawking
fixes urbit/landscape#836 fixes urbit/landscape#833
This commit is contained in:
parent
2f365ec9cd
commit
cef3f63bef
@ -56,9 +56,9 @@ export default function Groups(props: GroupsProps & Parameters<typeof Box>[0]) {
|
||||
const path = group?.group;
|
||||
const unreadCount = graphUnreads(path);
|
||||
const notCount = graphNotifications(path);
|
||||
|
||||
return (
|
||||
<Group
|
||||
key={group.metadata.title}
|
||||
updates={notCount}
|
||||
first={index === 0}
|
||||
unreads={unreadCount}
|
||||
|
@ -23,7 +23,7 @@ export function StatelessAsyncAction({
|
||||
|
||||
return (
|
||||
<Action
|
||||
height="18px"
|
||||
height="16px"
|
||||
hideDisabled={!disabled}
|
||||
disabled={disabled || state === 'loading'}
|
||||
onClick={handleClick} {...rest}
|
||||
|
@ -1,12 +1,12 @@
|
||||
import {
|
||||
BaseImage, Box,
|
||||
|
||||
Button, Col,
|
||||
|
||||
Icon, Row,
|
||||
|
||||
Text
|
||||
} from '@tlon/indigo-react';
|
||||
BaseImage,
|
||||
Box,
|
||||
Button,
|
||||
Col,
|
||||
Icon,
|
||||
Row,
|
||||
Text,
|
||||
} from "@tlon/indigo-react";
|
||||
import React, { useRef } from 'react';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import { Sigil } from '~/logic/lib/sigil';
|
||||
@ -110,6 +110,7 @@ const StatusBar = (props) => {
|
||||
</Row>
|
||||
<Row justifyContent='flex-end' collapse>
|
||||
<StatusBarItem
|
||||
width='32px'
|
||||
mr={2}
|
||||
backgroundColor='yellow'
|
||||
display={
|
||||
@ -125,7 +126,7 @@ const StatusBar = (props) => {
|
||||
)
|
||||
}
|
||||
>
|
||||
<Icon icon="Bug" color="#000000" />
|
||||
<Icon icon="Bug" color="#000000" />
|
||||
</StatusBarItem>
|
||||
<StatusBarItem
|
||||
width='32px'
|
||||
|
Loading…
Reference in New Issue
Block a user