Skip to content

Commit 3663b90

Browse files
authored
fix table app frame and title content scss to work with safari (#484)
1 parent b52462d commit 3663b90

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

projects/components/src/table/table.component.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
.table {
2121
width: 100%;
22-
flex: 1 1 0;
22+
flex: 1 1;
2323
overflow: auto;
2424
}
2525

@@ -65,7 +65,7 @@
6565

6666
.header-cell {
6767
display: flex;
68-
flex: 1 1 0;
68+
flex: 1 1;
6969
overflow: hidden;
7070

7171
.header-cell-renderer {
@@ -95,7 +95,7 @@
9595
}
9696

9797
.data-cell {
98-
flex: 1 1 0;
98+
flex: 1 1;
9999
overflow: hidden;
100100
border-bottom: 1px solid $gray-1;
101101

projects/components/src/titled-content/titled-content.component.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
}
3333

3434
.content {
35+
height: 100%;
36+
width: 100%;
3537
flex: 1 1 auto;
3638
overflow: hidden;
3739
}

src/app/application-frame/application-frame.component.scss

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

2424
.app-content-with-header {
25-
flex: 1 1 0;
25+
flex: 1 1;
2626
height: 100%;
2727
width: 100%;
2828
display: flex;

0 commit comments

Comments
 (0)