mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-02 15:13:25 +03:00
landscape: prevent flexShrink on group header
This commit is contained in:
parent
105916d93e
commit
76f8cb866a
@ -83,7 +83,18 @@ export function GroupSwitcher(props: {
|
|||||||
: associations.groups[workspace.group].metadata;
|
: associations.groups[workspace.group].metadata;
|
||||||
const navTo = (to: string) => `${props.baseUrl}${to}`;
|
const navTo = (to: string) => `${props.baseUrl}${to}`;
|
||||||
return (
|
return (
|
||||||
<Row width="100%" alignItems="center" height='48px' backgroundColor="white" zIndex="2" position="sticky" top="0px" pl='3' borderBottom='1px solid' borderColor='washedGray'>
|
<Row
|
||||||
|
width="100%"
|
||||||
|
alignItems="center"
|
||||||
|
flexShrink={0}
|
||||||
|
height='48px'
|
||||||
|
backgroundColor="white"
|
||||||
|
zIndex="2"
|
||||||
|
position="sticky"
|
||||||
|
top="0px"
|
||||||
|
pl='3'
|
||||||
|
borderBottom='1px solid'
|
||||||
|
borderColor='washedGray'>
|
||||||
<Col
|
<Col
|
||||||
bg="white"
|
bg="white"
|
||||||
width="100%"
|
width="100%"
|
||||||
|
Loading…
Reference in New Issue
Block a user