Skip to content

Commit 560e079

Browse files
committed
Changed caret icon size
1 parent 97c13be commit 560e079

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/bundle/Resources/public/scss/ui/modules/universal-discovery/_finder-leaf.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686

8787
&__icon-wrapper {
8888
position: relative;
89-
margin-right: calculateRem(20px);
89+
margin-right: calculateRem(24px);
9090
text-align: center;
9191

9292
.ibexa-icon {

src/bundle/ui-dev/src/modules/common/simple-dropdown/simple.dropdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const SimpleDropdown = ({
6262
const renderCaretIcon = () => {
6363
const iconName = isExpanded ? 'caret-up' : 'caret-down';
6464

65-
return <Icon name={iconName} extraClasses="ibexa-icon--tiny-small c-simple-dropdown__expand-icon" />;
65+
return <Icon name={iconName} extraClasses="ibexa-icon--small c-simple-dropdown__expand-icon" />;
6666
};
6767
const renderSelectedLabel = () => {
6868
if (!selectedOption && !!selectedItemLabel) {

src/bundle/ui-dev/src/modules/sub-items/components/view-columns-toggler/view.columns.toggler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default class ViewColumnsTogglerComponent extends Component {
118118
renderCaretIcon() {
119119
const iconName = this.state.isOpen ? 'caret-up' : 'caret-down';
120120

121-
return <Icon name={iconName} extraClasses="ibexa-icon--tiny-small c-simple-dropdown__expand-icon" />;
121+
return <Icon name={iconName} extraClasses="ibexa-icon--small c-simple-dropdown__expand-icon" />;
122122
}
123123

124124
renderToggler() {

0 commit comments

Comments
 (0)