-
-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #249 from n4ze3m/next
v1.8.0
- Loading branch information
Showing
53 changed files
with
1,899 additions
and
1,219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
app/ui/src/components/Settings/Application/ApplicationCard.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
export const ApplicationCard = ({ | ||
children, | ||
description, | ||
title, | ||
}: { | ||
children: React.ReactNode; | ||
title: string; | ||
description: string; | ||
}) => { | ||
return ( | ||
<div> | ||
<h2 className="text-base font-semibold leading-7 text-gray-900 dark:text-white"> | ||
{title} | ||
</h2> | ||
<p className="mt-1 text-sm leading-6 text-gray-500 dark:text-gray-200"> | ||
{description} | ||
</p> | ||
|
||
<dl className="mt-6 space-y-6 divide-y divide-gray-100 border-gray-200 text-sm leading-6 dark:text-gray-200"> | ||
<div className="mt-5 md:col-span-2 md:mt-0">{children}</div> | ||
</dl> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.