ds4/src/scss/global/_window.scss
2021-02-24 12:55:30 +01:00

21 lines
371 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%;
}
}
.rollable {
&:hover,
&:focus {
color: #000;
text-shadow: 0 0 10px red;
cursor: pointer;
}
}