zu 0.3.3

Yew web components, implementing Material Design
Documentation
// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License
// that can be found in the LICENSE file.


/* Styles for AvatarGroup */

// Styles applied to the root element.
.ZuAvatarGroup-root {
  display: flex;
  flex-direction: row-reverse;

  border: 2px solid $zu-palette-background-default;
  box-sizing: content-box;
  margin-left: -8px;

  &:last-child {
    margin-left: 0;
  }
}

// Styles applied to the avatar elements.
.ZuAvatarGroup-avatar {
  border: 2px solid $zu-palette-background-default;
  box-sizing: content-box;
  margin-left: -8px;

  &:last-child {
    margin-left: 0;
  }
}