skin-dt-32 0.0.21 → 0.0.24
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/config/vueComponents.js +18 -18
- package/package.json +1 -1
- package/stylesheet.css +14 -0
package/config/vueComponents.js
CHANGED
|
@@ -720,24 +720,24 @@ Vue.component('tablon-superior', {
|
|
|
720
720
|
},
|
|
721
721
|
template: `
|
|
722
722
|
<section id="topbar-section" class="basic-element">
|
|
723
|
-
<
|
|
724
|
-
<
|
|
725
|
-
<
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
<
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
</
|
|
739
|
-
</
|
|
740
|
-
|
|
723
|
+
<ul class="is-flex is-multiline">
|
|
724
|
+
<li>
|
|
725
|
+
<img :src="avatar" />
|
|
726
|
+
<h4>{{ name }}</h4>
|
|
727
|
+
</li>
|
|
728
|
+
<li class="is-full is-one-third-desktop">
|
|
729
|
+
<links-ayuda></links-ayuda>
|
|
730
|
+
</li>
|
|
731
|
+
<li class="is-full">
|
|
732
|
+
<nav id="forum-breadcrumb" class="breadcrumb has-succeeds-separator left" aria-label="breadcrumbs">
|
|
733
|
+
<ul>
|
|
734
|
+
<li>
|
|
735
|
+
<a href="/" title="Ir a «Inicio»">Inicio</a>
|
|
736
|
+
</li>
|
|
737
|
+
</ul>
|
|
738
|
+
</nav>
|
|
739
|
+
</li>
|
|
740
|
+
</ul>
|
|
741
741
|
</section>
|
|
742
742
|
`
|
|
743
743
|
});
|
package/package.json
CHANGED
package/stylesheet.css
CHANGED
|
@@ -156,6 +156,20 @@ a {
|
|
|
156
156
|
background: var(--color-three);
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
+
#topbar-section .category-element {
|
|
160
|
+
margin: 0;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
#forum-breadcrumb {
|
|
164
|
+
padding: 1rem 2rem;
|
|
165
|
+
background: var(--color-contrast);
|
|
166
|
+
color: var(--color-two);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
#forum-breadcrumb a {
|
|
170
|
+
color: var(--color-two);
|
|
171
|
+
}
|
|
172
|
+
|
|
159
173
|
@media only screen and (max-width: 1023px) {}
|
|
160
174
|
|
|
161
175
|
@media only screen and (max-width: 768px) {}
|