summaryrefslogtreecommitdiff
path: root/src/components/Search.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Search.module.scss')
-rw-r--r--src/components/Search.module.scss32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/components/Search.module.scss b/src/components/Search.module.scss
deleted file mode 100644
index f9b829e..0000000
--- a/src/components/Search.module.scss
+++ /dev/null
@@ -1,32 +0,0 @@
-.RuleSearch {
- width: 100%;
-}
-
-.input {
- -webkit-appearance: none;
- appearance: none;
- background-color: var(--color-input-bg);
- background-image: none;
- border-radius: 8px;
- border: 1px solid transparent;
- box-sizing: border-box;
- color: var(--color-text);
- display: inline-block;
- font-size: 0.95em;
- height: 40px;
- outline: none;
- padding: 0 16px;
- transition: all 0.2s ease;
- width: 100%;
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
-
- &::placeholder {
- color: var(--color-text-secondary);
- opacity: 0.6;
- }
-
- &:focus {
- border-color: var(--color-focus-blue);
- box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
- }
-}