vipassana-design-standards 1.1.1 → 1.1.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/README.md +2 -1
- package/dist/css/bootstrap5-theme.css +10 -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 +10 -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/custom-bootstrap.scss +1 -0
- package/src/stylesheets/layout/vds-layout.scss +3 -0
- package/src/stylesheets/logo.scss +6 -0
|
@@ -11711,6 +11711,7 @@ textarea.form-control-lg {
|
|
|
11711
11711
|
.btn {
|
|
11712
11712
|
display: inline-flex;
|
|
11713
11713
|
align-items: center;
|
|
11714
|
+
white-space: nowrap;
|
|
11714
11715
|
}
|
|
11715
11716
|
|
|
11716
11717
|
.btn-secondary,
|
|
@@ -11910,9 +11911,12 @@ body {
|
|
|
11910
11911
|
display: flex;
|
|
11911
11912
|
flex-direction: column;
|
|
11912
11913
|
justify-content: center;
|
|
11914
|
+
margin-top: 3rem;
|
|
11913
11915
|
}
|
|
11914
11916
|
.vds-footer .vds-container {
|
|
11915
11917
|
padding: 1rem var(--layout-padding);
|
|
11918
|
+
justify-content: center;
|
|
11919
|
+
gap: 2rem;
|
|
11916
11920
|
}
|
|
11917
11921
|
.vds-footer a {
|
|
11918
11922
|
color: white;
|
|
@@ -12646,6 +12650,12 @@ body {
|
|
|
12646
12650
|
margin-bottom: 0.3em;
|
|
12647
12651
|
}
|
|
12648
12652
|
|
|
12653
|
+
/* Force font-family for english Logo */
|
|
12654
|
+
/* If the page is displayed in Hindi, but the Logo in english, we want to use footlight */
|
|
12655
|
+
.vipassana-logo[data-lang=en] {
|
|
12656
|
+
--vds-headings-font-family: "FootLight";
|
|
12657
|
+
}
|
|
12658
|
+
|
|
12649
12659
|
html.vds-html {
|
|
12650
12660
|
font-size: 13.5px;
|
|
12651
12661
|
}
|