Skip to content

Commit 0d4759c

Browse files
authored
Fix: min height button overlapping issue with the elements (#28)
1 parent 01e8189 commit 0d4759c

13 files changed

Lines changed: 8 additions & 14 deletions

File tree

src/components/ContentExplorer/Content.scss

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

33
.bce-content {
44
display: flex;
5-
flex: 1;
5+
flex: 1 0 230px;
66
flex-direction: column;
77
position: relative;
88
}

src/components/ContentExplorer/ItemList.scss

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

33
.bce-item-grid {
44
flex: 1;
5-
min-height: 300px;
65

76
// sass-lint:disable class-name-format
87
.ReactVirtualized__Table__Grid {

src/components/ContentPicker/Content.scss

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

33
.bcp-content {
44
display: flex;
5-
flex: 1;
5+
flex: 1 0 160px;
66
flex-direction: column;
77
position: relative;
88
}

src/components/ContentPicker/ItemList.scss

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

33
.bcp-item-grid {
44
flex: 1;
5-
min-height: 300px;
65

76
// sass-lint:disable class-name-format
87
.ReactVirtualized__Table__Grid {

src/components/ContentTree/Content.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
.bct-content {
44
display: flex;
5-
flex: 1;
5+
flex: 1 0 350px;
66
flex-direction: column;
77

88
.bct-item-list {
99
flex: 1;
10-
min-height: 300px;
1110
position: relative;
1211

1312
// sass-lint:disable class-name-format

src/components/ContentUploader/DroppableContent.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
.bcu-droppable-content {
22
display: flex;
3-
flex: 1;
3+
flex: 1 0 200px;
44
flex-direction: column;
55
position: relative;
66

77
.bcu-item-list {
88
flex: 1;
9-
min-height: 300px;
109
position: relative;
1110

1211
// sass-lint:disable class-name-format

src/components/ContentUploader/UploadState.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
display: flex;
66
flex: 1;
77
justify-content: center;
8-
min-height: 300px;
98
position: relative;
109
text-align: center;
1110

src/components/EmptyState/EmptyState.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
flex: 1;
55
flex-direction: column;
66
justify-content: center;
7-
min-height: 300px;
87
}

src/components/Header/Header.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
background: $almost-white;
66
border-bottom: 1px solid $off-white;
77
display: flex;
8-
height: 70px;
8+
flex: 0 0 70px;
99
justify-content: space-between;
1010
padding: 0 25px 0 0;
1111

src/components/SubHeader/Sort.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
display: flex;
77
}
88

9-
.buik-sort-btn {
9+
.buik-btn.buik-sort-btn {
1010
padding: 5px 16px;
1111

1212
.bce:not(.buik-is-small) & {

0 commit comments

Comments
 (0)