File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/epo-react-lib/src Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ export const Input = styled.input`
5
5
--color-input-border-hover: var(--color-font-accent);
6
6
7
7
border: 1px solid var(--color-input-border);
8
- border-radius: var(--size-spacing-3xs);
8
+ border-radius: var(--size-spacing-3xs, calc(1em * 0.25) );
9
9
box-sizing: border-box;
10
10
font-weight: var(--weight-font-normal);
11
- height: var(--size-spacing-xl);
11
+ height: var(--size-spacing-xl, calc(1em * 3) );
12
12
line-height: 1;
13
13
width: 100%;
14
- padding: var(--size-spacing-s);
14
+ padding: var(--size-spacing-s, 1em );
15
15
16
16
&:not(:disabled):hover,
17
17
&:not(:disabled):focus-within {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import styled from "styled-components";
3
3
4
4
export const Container = styled . div `
5
5
> * + * {
6
- margin-block-start: var(--size-spacing-3xs);
6
+ margin-block-start: var(--size-spacing-3xs, calc(1em * 0.25) );
7
7
}
8
8
` ;
9
9
You can’t perform that action at this time.
0 commit comments