vipassana-design-standards 1.1.1 → 1.1.2
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/README.md +2 -1
- package/dist/css/bootstrap5-theme.css +9 -0
- package/dist/css/bootstrap5-theme.css.map +1 -1
- package/dist/css/bootstrap5-theme.min.css +1 -1
- package/dist/css/bootstrap5-theme.rtl.css +9 -0
- package/dist/css/bootstrap5-theme.rtl.min.css +1 -1
- package/dist/css/logo.css +6 -0
- package/dist/css/logo.css.map +1 -1
- package/dist/css/logo.min.css +1 -1
- package/dist/css/logo.rtl.css +6 -0
- package/dist/css/logo.rtl.min.css +1 -1
- package/dist/js/helpers.js +18 -4
- package/dist/js/react-helpers.js +17 -4
- package/dist/js/react-helpers.jsx +22 -4
- package/package.json +1 -1
- package/src/stylesheets/layout/vds-layout.scss +3 -0
- package/src/stylesheets/logo.scss +6 -0
|
@@ -11910,9 +11910,12 @@ body {
|
|
|
11910
11910
|
display: flex;
|
|
11911
11911
|
flex-direction: column;
|
|
11912
11912
|
justify-content: center;
|
|
11913
|
+
margin-top: 3rem;
|
|
11913
11914
|
}
|
|
11914
11915
|
.vds-footer .vds-container {
|
|
11915
11916
|
padding: 1rem var(--layout-padding);
|
|
11917
|
+
justify-content: center;
|
|
11918
|
+
gap: 2rem;
|
|
11916
11919
|
}
|
|
11917
11920
|
.vds-footer a {
|
|
11918
11921
|
color: white;
|
|
@@ -12646,6 +12649,12 @@ body {
|
|
|
12646
12649
|
margin-bottom: 0.3em;
|
|
12647
12650
|
}
|
|
12648
12651
|
|
|
12652
|
+
/* Force font-family for english Logo */
|
|
12653
|
+
/* If the page is displayed in Hindi, but the Logo in english, we want to use footlight */
|
|
12654
|
+
.vipassaga-logo[data-lang=en] {
|
|
12655
|
+
--vds-headings-font-family: "FootLight";
|
|
12656
|
+
}
|
|
12657
|
+
|
|
12649
12658
|
html.vds-html {
|
|
12650
12659
|
font-size: 13.5px;
|
|
12651
12660
|
}
|