Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions app/styles/columns.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,26 @@
opacity: 1;
transition: all 0.125s;
height: fit-content;
width: 100%;

&--size-XS {
min-width: 125px;
width: 2rem;
flex-grow: 125;
}

&--size-S {
min-width: 170px;
width: 3rem;
flex-grow: 150;
}

&--size-M {
min-width: 250px;
width: 4rem;
flex-grow: 250;
}

&--size-L {
min-width: 350px;
width: 5rem;
flex-grow: 350;
}

&--size-XL {
min-width: 450px;
width: 6rem;
flex-grow: 450;
}

&:first-child,
Expand Down
5 changes: 2 additions & 3 deletions app/styles/hypertable.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
.hypertable {
display: inline-grid;
grid-auto-flow: column;
grid-template-columns: 1fr auto;
grid-template-areas: 'sticky content';
grid-template-columns: 390px repeat(var(--hypertable-responsive-columns-number, 0), 1fr);
grid-auto-flow: column;

height: 100%;
scroll-behavior: smooth;
background-color: white;
background-color: var(--color-white);
position: relative;
flex: 1;
}
Expand Down
1 change: 0 additions & 1 deletion app/styles/inner-table.less
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
display: flex;
left: 0;
position: sticky;
flex-grow: 1;
z-index: 20;

.hypertable__cell,
Expand Down