Fix app list layout on tablet (#3255)
This commit is contained in:
parent
78f0de0a22
commit
8a0e57578c
2 changed files with 7 additions and 5 deletions
|
@ -28,9 +28,11 @@ export const AppManifestUrl: React.FC<AppManifestUrlProps> = ({
|
|||
}}
|
||||
>
|
||||
<Tooltip title={manifestUrl} header="App Manifest URL">
|
||||
<Text variant="caption" color="textNeutralSubdued">
|
||||
{new URL(manifestUrl).host}
|
||||
</Text>
|
||||
<Box __maxWidth="300px" className="ellipsis">
|
||||
<Text variant="caption" color="textNeutralSubdued">
|
||||
{new URL(manifestUrl).host}
|
||||
</Text>
|
||||
</Box>
|
||||
</Tooltip>
|
||||
<CopyIcon
|
||||
color="iconNeutralSubdued"
|
||||
|
|
|
@ -47,10 +47,10 @@ export const InstalledAppListRow: React.FC<InstalledApp> = props => {
|
|||
backgroundColor={!app.isActive ? "surfaceNeutralSubdued" : undefined}
|
||||
>
|
||||
<Box
|
||||
display="flex"
|
||||
justifyContent={{ mobile: "space-between", desktop: "flex-start" }}
|
||||
gap={5}
|
||||
alignItems="center"
|
||||
display="grid"
|
||||
__gridTemplateColumns="1fr auto"
|
||||
>
|
||||
<AppAvatar logo={logo} />
|
||||
<Box
|
||||
|
|
Loading…
Reference in a new issue