mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 14:00:05 +02:00

* Migrate the Try Premium for free page to Bootstrap 5 * Migrate the Overleaf Beta Program page to Bootstrap 5 * Fix buttons alignment on smaller screen size * Migrate the Overleaf Bonus Program page to Bootstrap 5 GitOrigin-RevId: 811db783af6a86ab472aae95e075bfa301786a31
42 lines
791 B
SCSS
42 lines
791 B
SCSS
.try-premium-page {
|
|
.try-premium-logo-container {
|
|
padding: 0 var(--spacing-08);
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.try-premium-third-party-logo {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
|
|
.try-premium-page-list-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-bottom: var(--spacing-06);
|
|
}
|
|
|
|
.try-premium-page-list {
|
|
padding-inline-start: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
max-width: 500px;
|
|
}
|
|
|
|
ul {
|
|
margin-bottom: 0;
|
|
width: 300px;
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
width: unset;
|
|
}
|
|
}
|
|
}
|
|
}
|