ywana-core8 0.0.291 → 0.0.292

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.291",
3
+ "version": "0.0.292",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
package/src/site/site.css CHANGED
@@ -52,6 +52,13 @@
52
52
  padding: .1rem;
53
53
  }
54
54
 
55
+ .site6>menu>main>.section-title {
56
+ width: 100%;
57
+ font-size: .7rem;
58
+ font-weight: 400;
59
+ padding: .5rem .7rem;
60
+ }
61
+
55
62
  .site6>menu>main>.site-menu-item {
56
63
  width: 100%;
57
64
  display: flex;
package/src/site/site.js CHANGED
@@ -198,6 +198,7 @@ const SiteMenu = ({ logo, title, children, min }) => {
198
198
  <main >
199
199
  {Object.keys(sections).map(title => (
200
200
  <Fragment key={title}>
201
+ <div className="section-title">{title}</div>
201
202
  {sections[title].map(({ id, icon = 'info', title }) => {
202
203
  const styleItem = id === page ? 'selected' : ''
203
204
  return (