Merge pull request #18860 from overleaf/mf-new-plans-page-student-desktop-header

[web] Create a table header for student plans with static data

GitOrigin-RevId: 29e787509521b6249a97f858b715b482214a9ab0
This commit is contained in:
M Fahru 2024-06-13 08:18:09 -07:00 committed by Copybot
parent 65592194ec
commit a0f90bd971

View file

@ -247,12 +247,12 @@
display: none;
@media (max-width: @screen-xs-max) {
display: flex;
display: block;
}
}
.plans-new-desktop {
display: flex;
display: block;
@media (max-width: @screen-xs-max) {
display: none;
@ -279,13 +279,21 @@
}
}
@table-4-column-width: 25%;
// TODO: review the usage of this class
// and check whether we can move the rule directly in the .plans-new-table
.plans-new-table-4-column {
th,
td {
width: 25%;
width: @table-4-column-width;
}
}
.plans-new-table-4-column.plans-new-table-student {
margin-left: @table-4-column-width / 2;
}
.plans-new-table-group {
.plans-new-table-header-grid-container {
min-height: 85px;