comand-component-library 4.0.11 → 4.0.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -218,7 +218,7 @@ export default {
218
218
  @import '../assets/styles/variables';
219
219
 
220
220
  @media only screen and (max-width: $medium-max-width) {
221
- .cmd-pager {
221
+ .cmd-pagination {
222
222
  > a.button {
223
223
  span {
224
224
  margin: 0;
@@ -381,6 +381,7 @@ export default {
381
381
  }
382
382
 
383
383
  &:hover, &:active, &:focus {
384
+ background: var(--pure-white);
384
385
  color: var(--pure-white);
385
386
 
386
387
  > span {
@@ -410,10 +411,8 @@ export default {
410
411
  <style lang="scss">
411
412
  @import "../assets/styles/variables";
412
413
 
413
- @container (max-width: #{$small-max-width}) {
414
+ @mixin button-wrapper {
414
415
  .cmd-social-networks {
415
- container-type: normal; /* do not set to 'inline-size' to avoid to be stretched vertically on small devices */
416
-
417
416
  .button-wrapper {
418
417
  .button {
419
418
  flex: none;
@@ -429,5 +428,13 @@ export default {
429
428
  }
430
429
  }
431
430
 
431
+ @media only screen and (max-width: $small-max-width) {
432
+ @include button-wrapper
433
+ }
434
+
435
+ @container (max-width: #{$small-max-width}) {
436
+ @include button-wrapper
437
+ }
438
+
432
439
  /* end cmd-social-networks ------------------------------------------------------------------------------------------ */
433
440
  </style>
package/src/index.js CHANGED
@@ -29,6 +29,7 @@ export { default as CmdNewsletterSubscription } from '@/components/CmdNewsletter
29
29
  export { default as CmdOpeningHours } from '@/components/CmdOpeningHours.vue'
30
30
  export { default as CmdPagination } from '@/components/CmdPagination.vue'
31
31
  export { default as CmdPageFooter } from '@/components/CmdPageFooter.vue'
32
+ export { default as CmdPageHeader } from '@/components/CmdPageHeader.vue'
32
33
  export { default as CmdProgressBar } from '@/components/CmdProgressBar.vue'
33
34
  export { default as CmdSidebar } from '@/components/CmdSidebar.vue'
34
35
  export { default as CmdSiteFooter } from '@/components/CmdSiteFooter.vue'