Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/InstallOneLiner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const InstallOneLiner = () => {
}
};

return <div className="mt-4 rounded border border-gray-300 dark:border-gray-600 bg-gray-50 dark:bg-gray-700 overflow-hidden max-w-xl">
return <div className="my-8 mx-auto p-2 rounded border border-gray-300 dark:border-gray-600 bg-gray-50 dark:bg-gray-700 overflow-hidden max-w-xl">
<div className="flex text-sm">
{(Object.keys(ONE_LINERS) as OS[]).map((key) => {
const active = os === key;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const PluginCom: FC<PluginProps> = ({plugins}) => {
<small className="align-text-bottom text-gray-400 mt-[3px]">{plugins.version}</small>
</div>
<div className="grow"></div>
{plugins.time && <div className="mr-5 mt-[0.3rem]">{formatTime(plugins.time)}</div>}
{plugins.modified && <div className="mr-5 mt-[0.3rem]" title={`Last updated ${plugins.modified}`}>{formatTime(plugins.modified)}</div>}
<div className="w-10 flex items-center mr-2">
<div className="w-10 border-[1px] border-white"
title={(plugins.downloads) + " downloads"}>
Expand Down