+
`,
+ styles: [
+ `
+ .outer-container {
+ display: grid;
+ justify-content: center;
+ gap: 2rem;
+ padding: 2.5rem 1rem 1rem 1rem;
+ margin-bottom: 4rem;
+
+ @media (min-width: 1024px) {
+ padding: 2.5rem 4rem 2rem 4rem;
+ }
+ }
+
+ .inner-container {
+ display: flex;
+ justify-content: flex-start;
+ }
+ `,
+ ],
standalone: true,
imports: [
CommonModule,
@@ -74,7 +84,7 @@ import { getManifest } from 'src/app/util/get-package-data'
TuiButtonModule,
TuiLetModule,
MarketplacePackageHeroComponent,
- DependenciesModule,
+ MarketplaceDependenciesComponent,
],
})
export class SideloadPackageComponent {
@@ -140,4 +150,8 @@ export class SideloadPackageComponent {
loader.unsubscribe()
}
}
+
+ open(id: string) {
+ this.router.navigate(['/marketplace'], { queryParams: { id } })
+ }
}
diff --git a/web/projects/ui/src/styles.scss b/web/projects/ui/src/styles.scss
index 3b6684e27..51de60246 100644
--- a/web/projects/ui/src/styles.scss
+++ b/web/projects/ui/src/styles.scss
@@ -1,72 +1,5 @@
@import '@taiga-ui/core/styles/taiga-ui-local';
-
-@font-face {
- font-family: 'text-security-disc';
- src: url('/assets/fonts/text-security-disc.woff2') format('woff2');
-}
-
-@font-face {
- font-family: 'Montserrat';
- font-style: normal;
- font-weight: normal;
- src: url('/assets/fonts/Montserrat/Montserrat-Regular.ttf');
-}
-
-@font-face {
- font-family: 'Montserrat';
- font-style: normal;
- font-weight: bold;
- src: url('/assets/fonts/Montserrat/Montserrat-Bold.ttf');
-}
-
-@font-face {
- font-family: 'Montserrat';
- font-style: normal;
- font-weight: thin;
- src: url('/assets/fonts/Montserrat/Montserrat-Light.ttf');
-}
-
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: normal;
- src: url('/assets/fonts/Open_Sans/OpenSans-Regular.ttf');
-}
-
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: 600;
- src: url('/assets/fonts/Open_Sans/OpenSans-SemiBold.ttf');
-}
-
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: bold;
- src: url('/assets/fonts/Open_Sans/OpenSans-Bold.ttf');
-}
-
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: thin;
- src: url('/assets/fonts/Open_Sans/OpenSans-Light.ttf');
-}
-
-@font-face {
- font-family: 'Courier New';
- font-style: normal;
- font-weight: normal;
- src: url('/assets/fonts/Courier_New/CourierNew-Regular.ttf');
-}
-
-@font-face {
- font-family: 'Courier New';
- font-style: normal;
- font-weight: bold;
- src: url('/assets/fonts/Courier_New/CourierNew-Bold.ttf');
-}
+@import '@start9labs/shared/styles/shared.scss';
/** Ionic CSS Variables overrides **/
:root {