add LargeTable component

This commit is contained in:
Arvid Norlin
2024-05-31 16:03:30 +02:00
parent de79c2dc80
commit 92f5f7f7c0
17 changed files with 136 additions and 94 deletions

View File

@@ -25,6 +25,10 @@
margin: 0;
}
.largeTableContainer {
display: none;
}
.columns {
display: none;
position: relative;
@@ -95,3 +99,13 @@
margin: 0 calc(var(--Spacing-x2) * -1);
}
}
@media screen and (min-width: 1367px) {
.columns {
display: none;
}
.largeTableContainer {
display: block;
}
}