vipassana-design-standards 0.0.12 → 0.0.13
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
CHANGED
|
@@ -8,10 +8,13 @@ helper Vipassana::LogoHelper
|
|
|
8
8
|
|
|
9
9
|
<body class="vds-body">
|
|
10
10
|
<div class="vds-header-and-content">
|
|
11
|
+
<!-- Header -->
|
|
11
12
|
<header class="vds-header">
|
|
12
|
-
|
|
13
|
+
<div class="vds-container">
|
|
14
|
+
<a href class="vds-logo"><!-- Logo vipassana_logo_svg --></a>
|
|
15
|
+
</div>
|
|
13
16
|
</header>
|
|
14
|
-
|
|
17
|
+
<!-- Page -->
|
|
15
18
|
<div class="vds-page vds-container">
|
|
16
19
|
<div class="vds-sidenav">
|
|
17
20
|
<ul>
|
|
@@ -20,13 +23,14 @@ helper Vipassana::LogoHelper
|
|
|
20
23
|
</li>
|
|
21
24
|
</ul>
|
|
22
25
|
</div>
|
|
23
|
-
|
|
24
26
|
<div class="vds-page-content">
|
|
25
27
|
<!-- Page content -->
|
|
26
28
|
</div>
|
|
27
29
|
</div>
|
|
28
30
|
</div>
|
|
29
|
-
|
|
31
|
+
<!-- Footer -->
|
|
30
32
|
<footer class="vds-footer">
|
|
33
|
+
<div class="vds-container">
|
|
34
|
+
</div>
|
|
31
35
|
</footer>
|
|
32
36
|
</body>
|
|
@@ -20,11 +20,15 @@
|
|
|
20
20
|
padding: var(--header-y-padding) var(--layout-padding);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
.vds-logo
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
max-height:
|
|
23
|
+
.vds-logo {
|
|
24
|
+
display: inline-flex;
|
|
25
|
+
|
|
26
|
+
svg {
|
|
27
|
+
max-height: 40px;
|
|
28
|
+
max-width: 100%;
|
|
29
|
+
@include media-breakpoint-up(md) {
|
|
30
|
+
max-height: 70px;
|
|
31
|
+
}
|
|
28
32
|
}
|
|
29
33
|
}
|
|
30
34
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vipassana-design-standards",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "Vipassana design standards materials",
|
|
5
5
|
"homepage": "https://design-standards.dhamma.org",
|
|
6
6
|
"author": "Dhamma Workers",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"bootstrap5": "npm:bootstrap@5"
|
|
8
|
+
"bootstrap5": "npm:bootstrap@5",
|
|
9
|
+
"@popperjs/core": "^2.9.1"
|
|
9
10
|
},
|
|
10
11
|
"sass": "app/assets/stylesheets/vds.scss"
|
|
11
12
|
}
|