mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +00:00
tweak margins
This commit is contained in:
parent
0b27696d83
commit
20a492fdee
1 changed files with 8 additions and 8 deletions
|
|
@ -317,7 +317,7 @@ export class SessionCreateForm extends LitElement {
|
||||||
class="modal-content font-mono text-sm w-full max-w-[calc(100vw-1rem)] sm:max-w-md lg:max-w-[576px] mx-2 sm:mx-4"
|
class="modal-content font-mono text-sm w-full max-w-[calc(100vw-1rem)] sm:max-w-md lg:max-w-[576px] mx-2 sm:mx-4"
|
||||||
style="view-transition-name: create-session-modal"
|
style="view-transition-name: create-session-modal"
|
||||||
>
|
>
|
||||||
<div class="p-4 pb-6 mb-6 border-b border-dark-border relative">
|
<div class="p-4 pb-4 mb-3 border-b border-dark-border relative">
|
||||||
<h2 class="text-accent-green text-lg font-bold">New Session</h2>
|
<h2 class="text-accent-green text-lg font-bold">New Session</h2>
|
||||||
<button
|
<button
|
||||||
class="absolute top-4 right-4 text-dark-text-muted hover:text-dark-text transition-colors p-1"
|
class="absolute top-4 right-4 text-dark-text-muted hover:text-dark-text transition-colors p-1"
|
||||||
|
|
@ -342,9 +342,9 @@ export class SessionCreateForm extends LitElement {
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="px-4 pb-4 sm:p-4 lg:p-8">
|
<div class="p-3 sm:p-3 lg:p-4">
|
||||||
<!-- Session Name -->
|
<!-- Session Name -->
|
||||||
<div class="mb-6">
|
<div class="mb-4">
|
||||||
<label class="form-label">Session Name (Optional):</label>
|
<label class="form-label">Session Name (Optional):</label>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
|
|
@ -357,7 +357,7 @@ export class SessionCreateForm extends LitElement {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Command -->
|
<!-- Command -->
|
||||||
<div class="mb-6">
|
<div class="mb-4">
|
||||||
<label class="form-label">Command:</label>
|
<label class="form-label">Command:</label>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
|
|
@ -370,7 +370,7 @@ export class SessionCreateForm extends LitElement {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Working Directory -->
|
<!-- Working Directory -->
|
||||||
<div class="mb-6">
|
<div class="mb-4">
|
||||||
<label class="form-label">Working Directory:</label>
|
<label class="form-label">Working Directory:</label>
|
||||||
<div class="flex gap-4">
|
<div class="flex gap-4">
|
||||||
<input
|
<input
|
||||||
|
|
@ -392,11 +392,11 @@ export class SessionCreateForm extends LitElement {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Quick Start Section -->
|
<!-- Quick Start Section -->
|
||||||
<div class="mb-6">
|
<div class="mb-4">
|
||||||
<label class="form-label text-dark-text-muted uppercase text-xs tracking-wider"
|
<label class="form-label text-dark-text-muted uppercase text-xs tracking-wider"
|
||||||
>Quick Start</label
|
>Quick Start</label
|
||||||
>
|
>
|
||||||
<div class="grid grid-cols-2 gap-3 mt-3">
|
<div class="grid grid-cols-2 gap-3 mt-2">
|
||||||
${this.quickStartCommands.map(
|
${this.quickStartCommands.map(
|
||||||
({ label, command }) => html`
|
({ label, command }) => html`
|
||||||
<button
|
<button
|
||||||
|
|
@ -418,7 +418,7 @@ export class SessionCreateForm extends LitElement {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex gap-4 mt-8">
|
<div class="flex gap-4 mt-4">
|
||||||
<button
|
<button
|
||||||
class="btn-ghost font-mono flex-1 py-3"
|
class="btn-ghost font-mono flex-1 py-3"
|
||||||
@click=${this.handleCancel}
|
@click=${this.handleCancel}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue