@npm_leadtech/legal-lib-components 2.6.1 → 2.6.3
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/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +14 -0
- package/dist/cjs/src/components/sections/AsSeeInSection/index.d.ts +2 -2
- package/dist/cjs/src/components/sections/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +14 -0
- package/dist/esm/src/components/sections/AsSeeInSection/index.d.ts +2 -2
- package/dist/esm/src/components/sections/index.d.ts +1 -0
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
|
@@ -3618,3 +3618,17 @@
|
|
|
3618
3618
|
@media (min-width: 720px) {
|
|
3619
3619
|
.guidelines-section {
|
|
3620
3620
|
flex-flow: row nowrap; } }
|
|
3621
|
+
|
|
3622
|
+
.as-seen-in-section {
|
|
3623
|
+
display: flex;
|
|
3624
|
+
flex-direction: column; }
|
|
3625
|
+
.as-seen-in-section__title {
|
|
3626
|
+
color: #3D4042;
|
|
3627
|
+
text-align: center;
|
|
3628
|
+
font-size: 32px;
|
|
3629
|
+
font-family: Lora;
|
|
3630
|
+
font-style: normal;
|
|
3631
|
+
font-weight: 400;
|
|
3632
|
+
line-height: 42px;
|
|
3633
|
+
letter-spacing: -0.3px;
|
|
3634
|
+
margin-bottom: 1rem; }
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { type
|
|
1
|
+
export { default as AsSeeInSection } from './AsSeeInSection';
|
|
2
|
+
export { type AsSeeInSectionProps } from './AsSeeInSectionProps.types';
|