Skip to content

Commit

Permalink
fix(styling): Row Move icon shouldn't show extra dot
Browse files Browse the repository at this point in the history
- it looks like an extra dot on the bottom right corner of the icon container was added, just using `display: block` instead of `inline-block` fixes the issue
![image](https://github.com/ghiscoding/slickgrid-universal/assets/643976/e1035dcc-bff6-4e6b-a292-06c1aa9e95a6)

- also remove duplicate ms-select styling import
  • Loading branch information
ghiscoding-SE committed Apr 29, 2024
1 parent d2cc940 commit 69f7bfc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/common/src/styles/slick-plugins.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* sass variables */
@import './variables';
@import './sass-utilities';
@import 'multiple-select-vanilla/dist/styles/sass/multiple-select.scss';

// ----------------------------------------------
// Column Picker & Grid Menu Controls
Expand Down Expand Up @@ -554,7 +553,7 @@ li.hidden {

.slick-row-move-column {
background-color: currentColor;
display: inline-block;
display: block;
height: 1em;
width: 1em;
font-size: var(--slick-row-move-plugin-icon-font-size, $slick-row-move-plugin-icon-font-size);
Expand Down

0 comments on commit 69f7bfc

Please sign in to comment.