Adding TextField

This commit is contained in:
Belen Curcio
2018-08-02 19:46:05 -03:00
parent 18d95b603b
commit ba01263731
7 changed files with 136 additions and 1 deletions
+10 -1
View File
@@ -131,7 +131,16 @@
color: var(--palette-common-black);
font-family: var(--font-family);
font-weight: var(--font-weight-medium);
font-size: 16px;
font-size: calc(16rem / var(--rem-base));
line-height: normal;
letter-spacing: calc(0.2em / 16);
}
.textField {
font-size: calc(16rem / var(--rem-base));
font-weight: var(--font-weight-regular);
font-family: var(--font-family);
line-height: calc(18em / 16);
letter-spacing: calc(0.2em / 16);
color: var(--palette-text-primary);
}