18 lines
440 B
SCSS
18 lines
440 B
SCSS
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
|
|
|
@mixin ms-depth-0 {
|
|
box-shadow: $ms-depth-shadow-0;
|
|
}
|
|
@mixin ms-depth-4 {
|
|
box-shadow: $ms-depth-shadow-4;
|
|
}
|
|
@mixin ms-depth-8 {
|
|
box-shadow: $ms-depth-shadow-8;
|
|
}
|
|
@mixin ms-depth-16 {
|
|
box-shadow: $ms-depth-shadow-16;
|
|
}
|
|
@mixin ms-depth-64 {
|
|
box-shadow: $ms-depth-shadow-64;
|
|
}
|