From 1a44fd65c7ca4478574acd374a3588bacdb7e410 Mon Sep 17 00:00:00 2001 From: Viktor Svertoka <115661003+ViktorSvertoka@users.noreply.github.com> Date: Fri, 15 Sep 2023 20:27:44 +0300 Subject: [PATCH] Style(CSS) Code style edits --- src/index.css | 2 +- src/styles/globalStyles.jsx | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index a17c855..c6c5460 100644 --- a/src/index.css +++ b/src/index.css @@ -23,7 +23,7 @@ } body { - background-color: #fff; + background: var(--black-color); /* background-image: url('./assets/background.png'); */ background-size: auto 100%; background-position: center center; diff --git a/src/styles/globalStyles.jsx b/src/styles/globalStyles.jsx index c6c96bb..a1d1b44 100644 --- a/src/styles/globalStyles.jsx +++ b/src/styles/globalStyles.jsx @@ -78,9 +78,14 @@ img { height: auto; } +input, textarea, select, button { + font: inherit; +} + button { cursor: pointer; border: none; + } `;