-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path_shame.scss
More file actions
33 lines (32 loc) · 1.06 KB
/
_shame.scss
File metadata and controls
33 lines (32 loc) · 1.06 KB
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
31
32
33
// ==========================================================================
// Shame
// If any code was written hastily to meet deadlines or in a hackish way then those
// codes should be written in _shame.scss. Documentation of hack codes is encouraged.
// Cleaning up the code in _shame.scss should be done at spare time. Find out whose code it is by
// using: $ git blame _shame.scss
// ==========================================================================
div {
&.SingleDatePicker_picker {
z-index: 99;
}
& .DateInput_input {
border: 1px solid getColor('grey.20');
border-radius: 2px;
padding: getSpacing('2x') getSpacing('3x');
width: 100%;
font-size: getFontSize('body1');
background-color: getColor('white.base');
color: getColor('grey.80');
font-weight: normal;
line-height: normal;
&::placeholder {
font-size: getFontSize('body1');
color: getColor('grey.40');
text-transform: capitalize;
font-weight: normal;
}
&:focus {
border: 1px solid getColor('tertiary-blue.60');
}
}
}