Commit 55853d7d authored by Manuel's avatar Manuel Committed by cinwell.li

use '--input-border-radius' variable in input.css

parent 35f80d62
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
appearance: none; appearance: none;
background-color: var(--color-white); background-color: var(--color-white);
background-image: none; background-image: none;
border-radius: 4px; border-radius: var(--input-border-radius);
border: var(--input-border); border: var(--input-border);
box-sizing: border-box; box-sizing: border-box;
color: var(--input-color); color: var(--input-color);
...@@ -132,7 +132,7 @@ ...@@ -132,7 +132,7 @@
display: table-cell; display: table-cell;
position: relative; position: relative;
border: var(--border-base); border: var(--border-base);
border-radius: 4px; border-radius: var(--input-border-radius);
padding: 0 10px; padding: 0 10px;
width: 1%; width: 1%;
white-space: nowrap; white-space: nowrap;
...@@ -199,7 +199,7 @@ ...@@ -199,7 +199,7 @@
background-color: var(--color-white); background-color: var(--color-white);
background-image: none; background-image: none;
border: var(--input-border); border: var(--input-border);
border-radius: 4px; border-radius: var(--input-border-radius);
transition: var(--border-transition-base); transition: var(--border-transition-base);
&::placeholder { &::placeholder {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment