fix(ui): add inner padding to strip components
Add px-3 to person bar, filter controls, and hint bar so inputs don't sit flush against the container edge. Refs: #179 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -28,7 +28,7 @@ let isActive = $derived(!!(fromDate || toDate || sortDir !== 'DESC'));
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
data-testid="conv-filter-controls"
|
data-testid="conv-filter-controls"
|
||||||
class="flex items-center gap-[10px] border-b border-line bg-muted py-[5px] transition-opacity"
|
class="flex items-center gap-[10px] border-b border-line bg-muted px-3 py-[5px] transition-opacity"
|
||||||
class:opacity-40={!senderId}
|
class:opacity-40={!senderId}
|
||||||
class:pointer-events-none={!senderId}
|
class:pointer-events-none={!senderId}
|
||||||
aria-disabled={!senderId}
|
aria-disabled={!senderId}
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ function handleSuggestionSelect(id: string) {
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
data-testid="conv-person-bar"
|
data-testid="conv-person-bar"
|
||||||
class="flex items-end gap-[9px] border-b border-line bg-surface py-[9px] [&_input]:h-12"
|
class="flex items-end gap-[9px] border-b border-line bg-surface px-3 py-[9px] [&_input]:h-12"
|
||||||
>
|
>
|
||||||
<!-- Person A -->
|
<!-- Person A -->
|
||||||
<div class="min-w-0 flex-1">
|
<div class="min-w-0 flex-1">
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ let toYear = $derived(toDate ? toDate.substring(0, 4) : '');
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="flex items-center gap-[5px] border-b border-accent bg-accent-bg py-[6px] text-xs text-ink"
|
class="flex items-center gap-[5px] border-b border-accent bg-accent-bg px-3 py-[6px] text-xs text-ink"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
|||||||
Reference in New Issue
Block a user