Skip to content

Commit

Permalink
Updated vertical padding to be consistant across the whole app
Browse files Browse the repository at this point in the history
  • Loading branch information
cp6 committed Oct 22, 2023
1 parent 32848fb commit bdc1ba9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/js/Pages/ActionLogs/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Index({auth}) {
header={<h2
className="font-semibold text-xl text-gray-800 dark:text-white leading-tight">{'Action logs'}</h2>}>
<Head title={'Action logs'}/>
<div className="py-8 px-1 mx-auto max-w-7xl lg:py-10">
<div className="py-4 sm:px-0 px-1 mx-auto max-w-7xl">
<ResponseAlert details={alert}></ResponseAlert>
{
logs.length === 0
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Connections/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Index({auth}) {
header={<h2
className="font-semibold text-xl text-gray-800 dark:text-white leading-tight">{'Server connections'}</h2>}>
<Head title={'Server connections'}/>
<div className="py-8 px-1 mx-auto max-w-7xl lg:py-10">
<div className="py-4 sm:px-0 px-1 mx-auto max-w-7xl">
<div className="flex flex-wrap gap-2 mb-4">
<AddButton href={route('connection.create')}>Add a connection</AddButton>
<EmeraldButton href={route('key.index')}><HiKey className="mr-2 h-5 w-5"/>Keys</EmeraldButton>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Outputs/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function Index({auth}) {
<BackButton href={route('command.index')}>Back to commands</BackButton>
<IndigoButton href={route('command-group.index')}><HiUserGroup className="mr-2 h-5 w-5" /> Command groups</IndigoButton>
</div>
<div className="py-8 px-1 mx-auto max-w-7xl lg:py-10">
<div className="py-4 sm:px-0 px-1 mx-auto max-w-7xl">
<section className="pt-4 shadow-md dark:shadow-md bg-white/50 dark:bg-gray-700 dark:shadow rounded-lg">
<Grid
data={outputs}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Outputs/IndexCommand.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function IndexCommand({auth}) {
<div className="flex flex-wrap gap-2 mb-4">
<BackButton href={route('command.index')}>Back to commands</BackButton>
</div>
<div className="py-8 px-1 mx-auto max-w-7xl lg:py-10">
<div className="py-4 sm:px-0 px-1 mx-auto max-w-7xl">
<section className="pt-4 shadow-md dark:shadow-md bg-white/50 dark:bg-gray-700 dark:shadow rounded-lg">
<Grid
data={outputs}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Outputs/IndexServer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function IndexServer({auth}) {
<div className="py-6 px-2 mx-auto max-w-7xl lg:py-8">
<div className="flex flex-wrap gap-2 mb-4">
</div>
<div className="py-8 px-1 mx-auto max-w-7xl lg:py-10">
<div className="py-4 sm:px-0 px-1 mx-auto max-w-7xl">
<section className="p-2 shadow-md dark:shadow-md bg-white/50 dark:bg-transparent dark:shadow rounded-lg dark:border dark:border-gray-700">
<Grid
data={outputs}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Sftp/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Index({auth}) {
header={<h2
className="font-semibold text-xl text-gray-800 dark:text-white leading-tight">{'SFTP connections'}</h2>}>
<Head title={'SFTP connections'}/>
<div className="py-8 px-1 mx-auto max-w-7xl lg:py-10">
<div className="py-4 sm:px-0 px-1 mx-auto max-w-7xl">
<FlexAddButtonDiv href={route('sftp.create')} resource={'SFTP connection'}/>
<ResponseAlert details={alert}></ResponseAlert>
<div className="grid gap-2 grid-cols-1 sm:grid-cols-4 sm:gap-4">
Expand Down

0 comments on commit bdc1ba9

Please sign in to comment.