pdfequips-footer 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.scss ADDED
@@ -0,0 +1,11 @@
1
+ // these are two packages i installed
2
+ @import "cssmolecule";
3
+ @import "custom-bs";
4
+ @import "./scss/mixins";
5
+ @include bootstrap;
6
+
7
+ body {
8
+ min-height: 2040px;
9
+ }
10
+
11
+ @import "./scss/footer";
package/src/main.tsx ADDED
@@ -0,0 +1,10 @@
1
+ import { StrictMode } from 'react'
2
+ import { createRoot } from 'react-dom/client'
3
+ import { Footer } from './Footer'
4
+ import "./index.scss";
5
+
6
+ createRoot(document.getElementById('root')!).render(
7
+ <StrictMode>
8
+ <Footer title="PDF Equips" lang='ar' />
9
+ </StrictMode>,
10
+ )
@@ -0,0 +1,93 @@
1
+ body {
2
+ @include extend("position-relative");
3
+ }
4
+
5
+ .container {
6
+ @include extend("container");
7
+ }
8
+
9
+ footer {
10
+ @include extend("py-5 border-top position-absolute w-100");
11
+ bottom: 0; // outline: 1px solid;
12
+
13
+ @include ar-wrapper {
14
+ @include extend("text-right");
15
+ }
16
+
17
+ .footer-wrapper {
18
+ @include extend("row");
19
+
20
+
21
+ .copyright-row {
22
+ @include extend("col-12 col-md-8 d-flex p0 justify-content-between");
23
+ flex: 1;
24
+
25
+ >* {
26
+ @include extend("m0 p0");
27
+ }
28
+
29
+ .copyright-text {
30
+ @include extend("col-6 text-muted col-6 col-md-10 mb-0 py-0");
31
+ align-self: stretch;
32
+ }
33
+
34
+ .socials {
35
+ @include extend("col d-flex justify-content-between align-items-center");
36
+
37
+ .facebook {
38
+ color: #1877f2;
39
+ }
40
+
41
+ .twitter {
42
+ color: #000000;
43
+ }
44
+
45
+ .instagram {
46
+ fill: url(#rg);
47
+ }
48
+
49
+
50
+
51
+ .linkedin {
52
+ color: #0a66c2;
53
+ }
54
+ }
55
+ }
56
+
57
+ .terms-col {
58
+ @include extend("col");
59
+ }
60
+ }
61
+
62
+ .bottom-row {
63
+ display: grid;
64
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
65
+ gap: 20px;
66
+ @include extend("mt-5");
67
+
68
+ strong {
69
+ @include extend("d-block mb-2");
70
+ }
71
+
72
+ .footer-links {
73
+ @include extend("list-unstyled list-group d-flex flex-column");
74
+
75
+
76
+ li {
77
+ @include extend("mb-2");
78
+
79
+ a {
80
+ @include extend("list-group-item list-group-item-action text-decoration-none mb-1 border-0");
81
+
82
+ @include all-langs {
83
+ margin-left: -1em;
84
+ }
85
+
86
+ @include ar-wrapper {
87
+ margin-right: -1em;
88
+ }
89
+ }
90
+ }
91
+ }
92
+ }
93
+ }
@@ -0,0 +1,48 @@
1
+ @mixin all-langs {
2
+ :not([lang="ar"]) & {
3
+ @content;
4
+ }
5
+ }
6
+
7
+ @mixin ar-wrapper {
8
+ [lang="ar"] & {
9
+ @content;
10
+ }
11
+ }
12
+
13
+ @mixin bootstrap {
14
+ @include reboot;
15
+ @include root;
16
+ @include type;
17
+ @include images;
18
+ @include containers;
19
+ @include grid;
20
+ @include tables;
21
+ @include forms;
22
+ @include buttons;
23
+ @include transitions;
24
+ @include dropdown;
25
+ @include button-group;
26
+ @include nav;
27
+ @include navbar;
28
+ @include card;
29
+ @include accordion;
30
+ @include breadcrumb;
31
+ @include pagination;
32
+ @include badge;
33
+ @include alert;
34
+ @include progress;
35
+ @include list-group;
36
+ @include close;
37
+ @include toasts;
38
+ @include modal;
39
+ @include tooltip;
40
+ @include popover;
41
+ @include carousel;
42
+ @include spinners;
43
+ @include offcanvas;
44
+ @include placeholders;
45
+ @include helpers;
46
+ @include api;
47
+ @include nav;
48
+ }
@@ -0,0 +1 @@
1
+ /// <reference types="vite/client" />
@@ -0,0 +1,26 @@
1
+ {
2
+ "compilerOptions": {
3
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4
+ "target": "ES2020",
5
+ "useDefineForClassFields": true,
6
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
7
+ "module": "ESNext",
8
+ "skipLibCheck": true,
9
+
10
+ /* Bundler mode */
11
+ "moduleResolution": "Bundler",
12
+ "allowImportingTsExtensions": true,
13
+ "isolatedModules": true,
14
+ "moduleDetection": "force",
15
+ "noEmit": true,
16
+ "jsx": "react-jsx",
17
+
18
+ /* Linting */
19
+ "strict": true,
20
+ "noUnusedLocals": true,
21
+ "noUnusedParameters": true,
22
+ "noFallthroughCasesInSwitch": true,
23
+ "noUncheckedSideEffectImports": true
24
+ },
25
+ "include": ["src"]
26
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "files": [],
3
+ "references": [
4
+ { "path": "./tsconfig.app.json" },
5
+ { "path": "./tsconfig.node.json" }
6
+ ]
7
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
+ "target": "ES2022",
5
+ "lib": ["ES2023"],
6
+ "module": "ESNext",
7
+ "skipLibCheck": true,
8
+
9
+ /* Bundler mode */
10
+ "moduleResolution": "Bundler",
11
+ "allowImportingTsExtensions": true,
12
+ "isolatedModules": true,
13
+ "moduleDetection": "force",
14
+ "noEmit": true,
15
+
16
+ /* Linting */
17
+ "strict": true,
18
+ "noUnusedLocals": true,
19
+ "noUnusedParameters": true,
20
+ "noFallthroughCasesInSwitch": true,
21
+ "noUncheckedSideEffectImports": true
22
+ },
23
+ "include": ["vite.config.ts"]
24
+ }
package/vite.config.ts ADDED
@@ -0,0 +1,7 @@
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react-swc'
3
+
4
+ // https://vite.dev/config/
5
+ export default defineConfig({
6
+ plugins: [react()],
7
+ })