Skip to content

Commit 37f334d

Browse files
Changed justify-content: end to flex-end & start to flex-start for better Browser Support (#3188)
* Changed justify-content: end to flex-end for better Browser Support * Changed justify-content: start to start-end for better Browser Support
1 parent 3d340d0 commit 37f334d

File tree

2 files changed

+2
-2
lines changed
  • packages

2 files changed

+2
-2
lines changed

packages/@adobe/spectrum-css-temp/components/table/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ svg.spectrum-Table-sortedIcon {
9797

9898
.spectrum-Table-columnResizer {
9999
display: flex;
100-
justify-content: end;
100+
justify-content: flex-end;
101101
box-sizing: border-box;
102102
position: absolute;
103103
inset-block-start: 0px;

packages/@react-spectrum/table/src/table.css

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

3030
.react-spectrum-Table-cell--alignStart {
3131
text-align: start;
32-
justify-content: start;
32+
justify-content: flex-start;
3333
}
3434

3535
.react-spectrum-Table-cell--alignCenter {

0 commit comments

Comments
 (0)