material-web/elevation/lib/_surface.scss
Material Web Team 41d41cc278 chore: update repository for Material 3
PiperOrigin-RevId: 455635969
2022-06-17 16:42:04 +00:00

19 lines
467 B
SCSS

//
// Copyright 2021 Google LLC
// SPDX-License-Identifier: Apache-2.0
//
// TODO(b/228217731): Remove MDC/MWC dependencies
@use '@material/web/compat/theme/css';
$duration: 280ms;
$easing: cubic-bezier(0.4, 0, 0.2, 1);
@mixin root-static-styles() {
position: relative;
transition: border #{$duration} #{$easing}, box-shadow #{$duration} #{$easing};
// used for interacting with overlays
z-index: 0;
@include css.declaration(--mdc-ripple-z-index, -1);
}