mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
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:
parent
65592194ec
commit
a0f90bd971
1 changed files with 11 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue