blob: 6d320f10f14903fe883bc8fdf34c6c85f491df16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@import "../@scss/variable.scss";
.header-container {
height: $header-height;
input {
&[type="text"] {
// Fake Material Design Style
padding: 0;
transition: none;
color: white;
border-radius: 0;
border: none;
border-bottom: {
color: white !important;
width: 1px !important;
style: solid !important;
}
background-color: transparent;
&::placeholder {
color: lightgray;
}
&:focus {
box-shadow: none;
}
}
}
}
|