Skip to content

Commit

Permalink
Merge pull request #10 from LarveyOfficial/dev
Browse files Browse the repository at this point in the history
1.3c
  • Loading branch information
LarveyOfficial authored May 12, 2023
2 parents 60b8c16 + fd59747 commit f161478
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 3 additions & 4 deletions src/pages/panel/logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ export function Logs() {
<title>Logs - {process.env.NEXT_PUBLIC_SITENAME}</title>
</Head>
<Header />
<br></br>
<div className="hidden justify-center py-5 md:flex">
<div className="hidden justify-center py-5 md:hidden lg:flex">
<div className="md:flex-1"></div>
<div className="md:flex-grow">
<div className="overflow-auto rounded-lg shadow">
Expand Down Expand Up @@ -130,7 +129,7 @@ export function Logs() {
<div className="md:flex-1"></div>
</div>
<br />
<div className="grid grid-cols-1 gap-4 px-5 sm:grid-cols-2 md:hidden">
<div className="grid grid-cols-1 gap-4 px-5 sm:grid-cols-2 lg:hidden">
{data.map((log: any) => {
return (
<div
Expand All @@ -140,7 +139,7 @@ export function Logs() {
<div className="flex items-center space-x-2 text-lg text-white">
<div>{log.name}</div>
</div>
<div className="text-md text-gray-200">{log.url}</div>
<div className="text-md break-all text-gray-200">{log.url}</div>
<div className="text-sm text-blue-400">{log.type}</div>
<div className="text-sm text-slate-500">
{timeConverter(log.date)}
Expand Down
7 changes: 4 additions & 3 deletions src/pages/panel/users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export function Users() {
<title>Users - {process.env.NEXT_PUBLIC_SITENAME}</title>
</Head>
<Header />
<div className="hidden justify-center py-5 md:flex">
<div className="hidden justify-center py-5 md:hidden lg:flex">
<div className="md:flex-1"></div>
<div className="md:flex-grow">
<div className="overflow-auto rounded-lg shadow">
Expand Down Expand Up @@ -283,10 +283,10 @@ export function Users() {
</table>
</div>
</div>
<div className="md:flex-1"></div>
<div className="lg:flex-1"></div>
</div>
<br />
<div className="grid grid-cols-1 gap-4 px-5 sm:grid-cols-2 md:hidden">
<div className="grid grid-cols-1 gap-4 px-5 sm:grid-cols-2 lg:hidden">
{data.map((user: any) => {
return (
<div
Expand Down Expand Up @@ -387,6 +387,7 @@ export function Users() {
</div>
</form>
</div>
<br></br>
</>
);
} else {
Expand Down

1 comment on commit f161478

@vercel
Copy link

@vercel vercel bot commented on f161478 May 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

shopgifs – ./

shopgifs-git-main-luisrvervaet.vercel.app
shopgifs-luisrvervaet.vercel.app
shopgifs.vercel.app

Please sign in to comment.