From 8686078ae801fdc15df5a40ee158a43373d37c1c Mon Sep 17 00:00:00 2001 From: bndw Date: Wed, 26 Apr 2023 17:49:25 -0700 Subject: Initial commit --- app/components/calculator.module.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/components/calculator.module.css (limited to 'app/components/calculator.module.css') diff --git a/app/components/calculator.module.css b/app/components/calculator.module.css new file mode 100644 index 0000000..265760d --- /dev/null +++ b/app/components/calculator.module.css @@ -0,0 +1,15 @@ +.form { +} + +.input { + border-bottom: solid 1px #eee; + box-sizing: border-box; + font-size: 3em; + margin: 8px 0; + padding: 12px 20px; + width: 100%; +} + +.input:focus { + outline: none; +} -- cgit v1.2.3