carbon-react 111.13.0 → 111.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import styled, { css } from "styled-components";
|
|
2
2
|
import StyledInput from "../../__internal__/input/input.style";
|
|
3
3
|
import StyledInputPresentation from "../../__internal__/input/input-presentation.style";
|
|
4
|
+
import StyledFormField from "../../__internal__/form-field/form-field.style";
|
|
4
5
|
import InputIconToggleStyle from "../../__internal__/input-icon-toggle/input-icon-toggle.style";
|
|
5
6
|
import StyledSelectText from "../select/__internal__/select-text/select-text.style";
|
|
6
7
|
import Link from "../link";
|
|
@@ -88,6 +89,10 @@ const StyledPagerNavInner = styled.div`
|
|
|
88
89
|
display: flex;
|
|
89
90
|
align-items: center;
|
|
90
91
|
padding: 0 12px;
|
|
92
|
+
|
|
93
|
+
& ${StyledFormField} {
|
|
94
|
+
margin-bottom: 0;
|
|
95
|
+
}
|
|
91
96
|
`;
|
|
92
97
|
const StyledPagerLinkStyles = styled(Link)`
|
|
93
98
|
padding: 0 10px;
|
|
@@ -11,6 +11,8 @@ var _input = _interopRequireDefault(require("../../__internal__/input/input.styl
|
|
|
11
11
|
|
|
12
12
|
var _inputPresentation = _interopRequireDefault(require("../../__internal__/input/input-presentation.style"));
|
|
13
13
|
|
|
14
|
+
var _formField = _interopRequireDefault(require("../../__internal__/form-field/form-field.style"));
|
|
15
|
+
|
|
14
16
|
var _inputIconToggle = _interopRequireDefault(require("../../__internal__/input-icon-toggle/input-icon-toggle.style"));
|
|
15
17
|
|
|
16
18
|
var _selectText = _interopRequireDefault(require("../select/__internal__/select-text/select-text.style"));
|
|
@@ -112,6 +114,10 @@ const StyledPagerNavInner = _styledComponents.default.div`
|
|
|
112
114
|
display: flex;
|
|
113
115
|
align-items: center;
|
|
114
116
|
padding: 0 12px;
|
|
117
|
+
|
|
118
|
+
& ${_formField.default} {
|
|
119
|
+
margin-bottom: 0;
|
|
120
|
+
}
|
|
115
121
|
`;
|
|
116
122
|
exports.StyledPagerNavInner = StyledPagerNavInner;
|
|
117
123
|
const StyledPagerLinkStyles = (0, _styledComponents.default)(_link.default)`
|