mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
ec1ab82789
[web] Clean up plans page styling GitOrigin-RevId: fe05e9a1fd6c29c62941c878fe5e676d062c37de
59 lines
1 KiB
Text
59 lines
1 KiB
Text
#change-plan {
|
|
.modal-dialog {
|
|
&:extend(.modal-lg);
|
|
}
|
|
|
|
table {
|
|
@media only screen and (min-width: @screen-md-min) {
|
|
th:last-child,
|
|
td:last-child {
|
|
width: 1%; // will expand to fit the content
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: @screen-sm-max) {
|
|
display: block;
|
|
|
|
thead {
|
|
display: none;
|
|
}
|
|
|
|
tbody,
|
|
td,
|
|
tr {
|
|
display: inline-block;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
td:first-child {
|
|
padding-top: @padding-md;
|
|
}
|
|
td:last-child {
|
|
padding-top: @padding-sm;
|
|
padding-bottom: @padding-md;
|
|
}
|
|
|
|
tr:first-child {
|
|
td:first-child {
|
|
padding-top: @padding-sm;
|
|
}
|
|
}
|
|
|
|
tr {
|
|
border-bottom: 1px solid @table-border-color;
|
|
td,
|
|
th {
|
|
border: 0 !important;
|
|
}
|
|
}
|
|
|
|
tr:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|