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 Backdrop */

// Styles applied to the root element.
.ZuBackdrop-root {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(0, 0, 0, 0.5);
}

// Styles applied to the root element if invisible={true}.
.ZuBackdrop-invisible {
  background-color: transparent;
}