style(app): more responsive
This commit is contained in:
parent
c4e55490cc
commit
badcb2ac2f
@ -17,7 +17,7 @@ const Component = () => {
|
|||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
<div className="flex w-full gap-5 justify-between items-center">
|
<div className="flex w-full gap-5 justify-between items-start md:items-center flex-col md:flex-row">
|
||||||
<h1 className="text-3xl">Access Tokens</h1>
|
<h1 className="text-3xl">Access Tokens</h1>
|
||||||
|
|
||||||
<Button asChild>
|
<Button asChild>
|
||||||
|
@ -88,8 +88,8 @@ const Component = () => {
|
|||||||
<Form {...form}>
|
<Form {...form}>
|
||||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8 w-full">
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-8 w-full">
|
||||||
<h1 className="text-2xl">New version</h1>
|
<h1 className="text-2xl">New version</h1>
|
||||||
<div className="grid grid-cols-6 gap-5 w-full max-w-screen-xl">
|
<div className="grid md:grid-cols-6 gap-5 w-full md:max-w-screen-xl grid-flow-row grid-cols-1">
|
||||||
<Card className="col-span-4">
|
<Card className="md:col-span-4 col-span-1">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle>Details</CardTitle>
|
<CardTitle>Details</CardTitle>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
@ -108,7 +108,7 @@ const Component = () => {
|
|||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div className="flex gap-5 items-center">
|
<div className="flex gap-5 md:items-center flex-col md:flex-row">
|
||||||
<FormField
|
<FormField
|
||||||
control={form.control}
|
control={form.control}
|
||||||
name="status"
|
name="status"
|
||||||
@ -229,7 +229,7 @@ const Component = () => {
|
|||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
<Card className="col-span-2">
|
<Card className="md:col-span-2 col-span-1">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<CardTitle>Associated commits</CardTitle>
|
<CardTitle>Associated commits</CardTitle>
|
||||||
@ -291,7 +291,7 @@ const Component = () => {
|
|||||||
</ScrollArea>
|
</ScrollArea>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
<div className="flex gap-5 mt-5 w-full justify-end items-end col-span-6">
|
<div className="flex gap-5 mt-5 w-full justify-end items-end md:col-span-6">
|
||||||
<Button
|
<Button
|
||||||
type="button"
|
type="button"
|
||||||
variant={'ghost'}
|
variant={'ghost'}
|
||||||
|
@ -29,7 +29,7 @@ const Component = () => {
|
|||||||
<div className="flex flex-col gap-5">
|
<div className="flex flex-col gap-5">
|
||||||
<h1 className="text-3xl">Changelog</h1>
|
<h1 className="text-3xl">Changelog</h1>
|
||||||
|
|
||||||
<div className="flex gap-10 w-full">
|
<div className="flex gap-10 w-full flex-wrap">
|
||||||
{!isPending &&
|
{!isPending &&
|
||||||
data &&
|
data &&
|
||||||
data.map((changelog) => {
|
data.map((changelog) => {
|
||||||
|
@ -36,14 +36,14 @@ const Platforms = [
|
|||||||
const Component = () => {
|
const Component = () => {
|
||||||
return (
|
return (
|
||||||
<PageWrapper breadcrumbs={[{ name: 'CLI', to: '/cli' }]}>
|
<PageWrapper breadcrumbs={[{ name: 'CLI', to: '/cli' }]}>
|
||||||
<div className="flex flex-col gap-5 w-full max-w-screen-lg">
|
<div className="flex flex-col gap-5 w-full md:max-w-screen-lg">
|
||||||
<h1 className="text-3xl">CLI</h1>
|
<h1 className="text-3xl">CLI</h1>
|
||||||
<p className="text-muted-foreground">
|
<p className="text-muted-foreground">
|
||||||
With our CLI you can upload your commits for your changelog in just a
|
With our CLI you can upload your commits for your changelog in just a
|
||||||
few seconds.
|
few seconds.
|
||||||
</p>
|
</p>
|
||||||
<h2 className="text-xl">Download</h2>
|
<h2 className="text-xl">Download</h2>
|
||||||
<div className="grid grid-cols-4 gap-10">
|
<div className="grid grid-cols-2 md:grid-cols-4 gap-10">
|
||||||
{Platforms.map((platform) => {
|
{Platforms.map((platform) => {
|
||||||
return (
|
return (
|
||||||
<a
|
<a
|
||||||
@ -56,7 +56,7 @@ const Component = () => {
|
|||||||
<img
|
<img
|
||||||
src={platform.svg}
|
src={platform.svg}
|
||||||
alt={platform.name}
|
alt={platform.name}
|
||||||
className="h-20"
|
className="h-10 md:h-20"
|
||||||
/>
|
/>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="text-center">
|
<CardContent className="text-center">
|
||||||
@ -69,7 +69,7 @@ const Component = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 className="text-xl">Usage</h2>
|
<h2 className="text-xl">Usage</h2>
|
||||||
<pre className="bg-muted text-xl p-3 rounded text-center flex justify-between items-center">
|
<pre className="bg-muted text-xs md:text-xl p-3 rounded text-center flex justify-between items-center">
|
||||||
bt --changelogId=... --token=bt_...
|
bt --changelogId=... --token=bt_...
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ const Component = () => {
|
|||||||
Alternatively, you can use an .env file:
|
Alternatively, you can use an .env file:
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<pre className="bg-muted text-xl p-3 rounded text-center flex justify-between items-center">
|
<pre className="bg-muted text-xs md:text-xl p-3 rounded text-center flex justify-between items-center">
|
||||||
BT_CHANGELOG_ID=...
|
BT_CHANGELOG_ID=...
|
||||||
<br />
|
<br />
|
||||||
BT_AUTH_TOKEN=bt_...
|
BT_AUTH_TOKEN=bt_...
|
||||||
|
@ -33,7 +33,7 @@ const Component = () => {
|
|||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="text-3xl font-bold">
|
<CardContent className="text-3xl font-bold">
|
||||||
{data?.changelog.versions.total}
|
{data?.changelog.versions.total}
|
||||||
<div className="text-xs text-muted-foreground tracking-normal flex gap-3">
|
<div className="text-xs text-muted-foreground tracking-normal flex gap-3 flex-wrap">
|
||||||
<span>{data?.changelog.versions.published} Published</span>
|
<span>{data?.changelog.versions.published} Published</span>
|
||||||
<span>{data?.changelog.versions.review} Review</span>
|
<span>{data?.changelog.versions.review} Review</span>
|
||||||
<span>{data?.changelog.versions.draft} Draft</span>
|
<span>{data?.changelog.versions.draft} Draft</span>
|
||||||
@ -47,7 +47,7 @@ const Component = () => {
|
|||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="text-3xl font-bold">
|
<CardContent className="text-3xl font-bold">
|
||||||
{data?.changelog.commits.total}
|
{data?.changelog.commits.total}
|
||||||
<div className="text-xs text-muted-foreground tracking-normal flex gap-3">
|
<div className="text-xs text-muted-foreground tracking-normal flex gap-3 flex-wrap">
|
||||||
<span>{data?.changelog.commits.assigned} Assigned</span>
|
<span>{data?.changelog.commits.assigned} Assigned</span>
|
||||||
<span>{data?.changelog.commits.unassigned} Unassigned</span>
|
<span>{data?.changelog.commits.unassigned} Unassigned</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -17,7 +17,8 @@ const Component = () => {
|
|||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
<div className="flex gap-10 w-full">
|
<h1 className="text-3xl">Page</h1>
|
||||||
|
<div className="flex gap-10 w-full flex-wrap">
|
||||||
{!isPending &&
|
{!isPending &&
|
||||||
data &&
|
data &&
|
||||||
data.map((page) => {
|
data.map((page) => {
|
||||||
@ -32,10 +33,10 @@ const Component = () => {
|
|||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
|
|
||||||
<Link to="/changelog/create">
|
<Link to="/page/create">
|
||||||
<Card className="max-w-56 min-w-56 w-full h-36 hover:border-emerald-700 transition">
|
<Card className="max-w-56 min-w-56 w-full h-36 hover:border-emerald-700 transition">
|
||||||
<CardHeader className="flex items-center justify-center">
|
<CardHeader className="flex items-center justify-center">
|
||||||
<CardTitle>New Changelog</CardTitle>
|
<CardTitle>New page</CardTitle>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="flex items-center justify-center">
|
<CardContent className="flex items-center justify-center">
|
||||||
<PlusCircleIcon strokeWidth={1.5} className="w-10 h-10" />
|
<PlusCircleIcon strokeWidth={1.5} className="w-10 h-10" />
|
||||||
|
Loading…
Reference in New Issue
Block a user