From dfd6c1fc4a41845e686fc6ee96f71b696213fe69 Mon Sep 17 00:00:00 2001 From: MAZE Date: Wed, 28 Feb 2024 20:27:45 +0330 Subject: [PATCH] fix: add min-width to inputs --- src/components/modals/presets/list/list.module.css | 1 + src/components/modals/presets/new/new.module.css | 1 + src/components/modals/share-link/share-link.module.css | 1 + 3 files changed, 3 insertions(+) diff --git a/src/components/modals/presets/list/list.module.css b/src/components/modals/presets/list/list.module.css index 00d90bd..855d727 100644 --- a/src/components/modals/presets/list/list.module.css +++ b/src/components/modals/presets/list/list.module.css @@ -27,6 +27,7 @@ & input { flex-grow: 1; + min-width: 0; height: 100%; padding: 0 12px; color: var(--color-foreground); diff --git a/src/components/modals/presets/new/new.module.css b/src/components/modals/presets/new/new.module.css index f73f279..33c247b 100644 --- a/src/components/modals/presets/new/new.module.css +++ b/src/components/modals/presets/new/new.module.css @@ -24,6 +24,7 @@ & input { flex-grow: 1; + min-width: 0; height: 100%; padding: 0 12px; color: var(--color-foreground); diff --git a/src/components/modals/share-link/share-link.module.css b/src/components/modals/share-link/share-link.module.css index 4eb4a8b..d57d084 100644 --- a/src/components/modals/share-link/share-link.module.css +++ b/src/components/modals/share-link/share-link.module.css @@ -23,6 +23,7 @@ & input { flex-grow: 1; + min-width: 0; height: 100%; padding: 0 10px; font-size: var(--font-sm);