12 lines
242 B
SCSS
12 lines
242 B
SCSS
@use "../utils/typography";
|
|
|
|
.window-app {
|
|
font-family: typography.$font-primary;
|
|
input[type="text"],
|
|
input[type="number"],
|
|
input[type="password"],
|
|
input[type="date"],
|
|
input[type="time"] {
|
|
width: 100%;
|
|
}
|
|
}
|