mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 00:13:12 +03:00
grid: fix tile bullet + suspend notice layout
This commit is contained in:
parent
090baa198b
commit
8239781550
@ -98,7 +98,7 @@ export const BaseBlockedNotification = () => {
|
||||
>
|
||||
<h2 className="h4">Skip System Update</h2>
|
||||
<p>
|
||||
Skipping the application fo an incoming System Update will grant you the ability to
|
||||
Skipping the application for an incoming System Update will grant you the ability to
|
||||
continue using incompatible apps at the cost of an urbit that's not up to date.
|
||||
</p>
|
||||
<p>
|
||||
|
@ -26,6 +26,7 @@ export const Tile: FunctionComponent<TileProps> = ({ charge, desk, disabled = fa
|
||||
const loading = !disabled && 'install' in chad;
|
||||
const suspended = disabled || 'suspend' in chad;
|
||||
const hung = 'hung' in chad;
|
||||
// TODO should held zest be considered inactive? suspended? also, null sync?
|
||||
const active = !disabled && chadIsRunning(chad);
|
||||
const link = getAppHref(href);
|
||||
const backgroundColor = suspended ? suspendColor : active ? tileColor || 'purple' : suspendColor;
|
||||
@ -56,6 +57,9 @@ export const Tile: FunctionComponent<TileProps> = ({ charge, desk, disabled = fa
|
||||
>
|
||||
<div>
|
||||
<div className="absolute z-10 top-4 left-4 sm:top-6 sm:left-6 flex items-center">
|
||||
{pike?.zest === 'held' && !disabled && (
|
||||
<Bullet className="w-4 h-4 text-orange-500 dark:text-black" />
|
||||
)}
|
||||
{!active && (
|
||||
<>
|
||||
{loading && <Spinner className="h-6 w-6 mr-2" />}
|
||||
@ -65,9 +69,6 @@ export const Tile: FunctionComponent<TileProps> = ({ charge, desk, disabled = fa
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
{pike?.zest === 'held' && !disabled && (
|
||||
<Bullet className="absolute z-10 top-5 left-5 sm:top-7 sm:left-7 w-4 h-4 text-orange-500 dark:text-black" />
|
||||
)}
|
||||
<TileMenu
|
||||
desk={desk}
|
||||
chad={chad}
|
||||
|
Loading…
Reference in New Issue
Block a user