Skip to content

Commit

Permalink
style: fix declaration-block-no-redundant-longhand-properties
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Oct 17, 2023
1 parent d80f8fb commit e0ddc46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions packages/abc/st/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-items: center;
place-items: center center;
}

.@{ant-prefix}-table-filter-trigger {
Expand Down
3 changes: 1 addition & 2 deletions packages/theme/layout-default/style/_aside.less
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@

&-inner {
flex: 1 1 0%;
overflow-x: hidden;
overflow-y: scroll;
overflow-x: hidden scroll;
-webkit-overflow-scrolling: touch;
scroll-snap-type: proximity;
scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
Expand Down
6 changes: 2 additions & 4 deletions packages/theme/system/utils/_scrollbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@
overflow: auto;

&-x {
overflow-x: auto;
overflow-y: hidden;
overflow: auto hidden;
}

&-y {
overflow-x: hidden;
overflow-y: auto;
overflow: hidden auto;
}
}

Expand Down

0 comments on commit e0ddc46

Please sign in to comment.