Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.

Commit 873685a

Browse files
igoroctavianoswederik
authored andcommitted
fix(LayoutChooser): Change bootstrap dropdown class to custom (#125)
1 parent 23be859 commit 873685a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/components/layoutButton/LayoutChooser.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ class LayoutChooser extends PureComponent {
9090
columns * this.props.boxSize + (columns + 5) * this.props.cellBorder,
9191
};
9292
return (
93-
<div className="layoutChooser dropdown-menu" role="menu" style={style}>
93+
<div
94+
className="layoutChooser layoutChooser-dropdown-menu"
95+
role="menu"
96+
style={style}
97+
>
9498
<table>
9599
<tbody>
96100
{this.state.table.map((row, i) => {

src/components/layoutButton/LayoutChooser.styl

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

33
$borderColor = rgba(77, 99, 110, 0.81)
44

5-
.dropdown-menu
5+
.layoutChooser-dropdown-menu
66
position: absolute;
77
top: 100%;
88
left: 0;

0 commit comments

Comments
 (0)