summaryrefslogtreecommitdiff
path: root/client/src/components/UpdateInput/UpdateInput.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/components/UpdateInput/UpdateInput.module.css')
-rw-r--r--client/src/components/UpdateInput/UpdateInput.module.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/client/src/components/UpdateInput/UpdateInput.module.css b/client/src/components/UpdateInput/UpdateInput.module.css
new file mode 100644
index 0000000..52e13a7
--- /dev/null
+++ b/client/src/components/UpdateInput/UpdateInput.module.css
@@ -0,0 +1,25 @@
+.input {
+ display: flex;
+ justify-content: center;
+ font-family: 'Barlow';
+ font-size: var(--font-medium-s);
+}
+
+.input__container {
+ display: flex;
+ flex-direction: column;
+}
+
+.input__edit{
+ display: flex;
+ flex-direction: row;
+}
+
+.input__field {
+ width: 300px;
+ margin: 10px 0px;
+ padding: 18px 10px;
+ border: 3px solid;
+ border-radius: 10px;
+ font-size: 1rem;
+}