/* Administrationens lokala sidnavigering följer huvudmönstret:
   navigering och åtgärder ligger till höger på laptop och större skärmar. */
.app-shell .section-tabs{
  justify-content:flex-end;
}

@media(max-width:760px){
  .app-shell .section-tabs{
    justify-content:flex-start;
    flex-wrap:nowrap;
    max-width:100%;
    overflow-x:auto;
    padding-bottom:2px;
    scrollbar-width:none;
  }
  .app-shell .section-tabs::-webkit-scrollbar{display:none}
  .app-shell .section-tabs a{flex:0 0 auto;min-height:42px}
}
