Prevent input overflow in admin forms
This commit is contained in:
@@ -37,6 +37,7 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.form-grid {
|
||||
@@ -57,6 +58,7 @@
|
||||
color: var(--muted);
|
||||
font-weight: 600;
|
||||
word-break: break-word;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
select {
|
||||
@@ -66,6 +68,8 @@ select {
|
||||
border-radius: 12px;
|
||||
padding: 10px 12px;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.admin-card textarea {
|
||||
|
||||
@@ -28,6 +28,8 @@ p {
|
||||
|
||||
input, textarea {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
min-width: 0;
|
||||
background: var(--input-bg);
|
||||
color: var(--text);
|
||||
border: 1px solid var(--input-border);
|
||||
|
||||
Reference in New Issue
Block a user