blob: 708f921cc5efbf394bde275b4e7ec21c9245de88 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001/**
2 * Copyright 2015 Google Inc. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17@import "../variables";
18@import "../mixins";
19
20.mdl-shadow--2dp {
21 @include shadow-2dp();
22}
23
24.mdl-shadow--3dp {
25 @include shadow-3dp();
26}
27
28.mdl-shadow--4dp {
29 @include shadow-4dp();
30}
31
32.mdl-shadow--6dp {
33 @include shadow-6dp();
34}
35
36.mdl-shadow--8dp {
37 @include shadow-8dp();
38}
39
40.mdl-shadow--16dp {
41 @include shadow-16dp();
42}
43
44.mdl-shadow--24dp {
45 @include shadow-24dp();
46}