Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cut off pages #210

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<div class="relative flex flex-col justify-center items-center">
<div
class="relative flex flex-col min-h-screen justify-center items-center py-4 sm:py-8">
<div class="absolute sm:top-7 sm:left-7 left-1 top-1">
<button mat-icon-button routerLink="/my-organization/connectors/new">
<mat-icon class="z-50 text-gray-600">arrow_back</mat-icon>
Expand All @@ -9,21 +10,19 @@
<mat-icon class="z-50 text-gray-600">close</mat-icon>
</button>
</div>
<div class="flex flex-col justify-center items-center flex-auto h-screen">
<div class="w-full p-4 lg:p-0 text-center">
<h2 class="selection-page-title mb-2 max-w-xl mx-auto">
Request a Connector-as-a-Service
</h2>
<p class="selection-page-prose">
As an MDS member, you have the option to request 1 free CaaS per
environment.
</p>
<div class="flex gap-4 flex-row mt-8 justify-evenly">
<app-selection-box [config]="selectionBox"></app-selection-box>
</div>
<div
class="flex flex-col justify-center items-center flex-auto w-full text-center px-4 lg:px-0">
<h2 class="selection-page-title mb-2 max-w-xl mx-auto">
Request a Connector-as-a-Service
</h2>
<p class="selection-page-prose">
As an MDS member, you have the option to request 1 free CaaS per
environment.
</p>
<div class="flex gap-4 flex-row mt-8 justify-evenly w-full">
<app-selection-box [config]="selectionBox"></app-selection-box>
</div>
</div>
<!-- footer -->
<app-footer-for-full-page class="w-full"></app-footer-for-full-page>
</div>

<!-- footer -->
<app-footer-for-full-page></app-footer-for-full-page>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div
class="flex flex-col h-screen justify-center items-center max-w-4xl mx-auto">
class="flex flex-col min-h-screen justify-center items-center max-w-4xl mx-auto py-4 sm:py-8">
<h1 class="selection-page-title">Request a Connector-as-a-Service</h1>
<p class="selection-page-prose">
<p class="selection-page-prose text-center">
As an MDS member, you have the option to request 1 free CaaS per
environment.
</p>
Expand Down
Loading