summaryrefslogtreecommitdiff
path: root/styles/input.css
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-07-27 00:30:42 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-07-27 00:30:42 -0400
commitd0ec435399ff3308be1b79ad67e37321b9a97b8e (patch)
tree9298f875c7cb6328294427d8e543c9024a08798d /styles/input.css
parenta97fcacb0ce4d2f30fbe989ec1f62f6bd95c7e9a (diff)
[chat] Use an object instead of a list
Diffstat (limited to 'styles/input.css')
-rw-r--r--styles/input.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/styles/input.css b/styles/input.css
index 714910f..d10355a 100644
--- a/styles/input.css
+++ b/styles/input.css
@@ -54,6 +54,7 @@ input[type=text], input[type=password], input[type=date], input[type=time], inpu
background-color: var(--input-bg-text);
color: var(--input-color-text);
font-size: 1em;
+ width: calc(100% - 10px);
}
input[type=text]:hover, input[type=password]:hover, input[type=date]:hover, input[type=time]:hover, input[type="number"]:hover
@@ -429,6 +430,10 @@ div.input-container[type=select]:focus::after
color: var(--input-color-select-active);
}
+div.input-container[type="button"] > input {
+ width: calc(100% - 10px);
+}
+
/* Input Title Wrapper */
div.input-title-wrapper::before