From 9348dbbee435b2a3d274a67fa4b7709fa591d945 Mon Sep 17 00:00:00 2001 From: Elizabeth Mitchell Date: Wed, 28 Sep 2022 09:33:00 -0700 Subject: [PATCH] chore(elevation): remove compat deps PiperOrigin-RevId: 477473663 --- elevation/lib/_surface.scss | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/elevation/lib/_surface.scss b/elevation/lib/_surface.scss index ab9d538ae..8498d03f5 100644 --- a/elevation/lib/_surface.scss +++ b/elevation/lib/_surface.scss @@ -3,9 +3,6 @@ // 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); @@ -14,5 +11,5 @@ $easing: cubic-bezier(0.4, 0, 0.2, 1); transition: border #{$duration} #{$easing}, box-shadow #{$duration} #{$easing}; // used for interacting with overlays z-index: 0; - @include css.declaration(--mdc-ripple-z-index, -1); + --mdc-ripple-z-index: -1; }