Elizabeth Mitchell 6c2aef6901 chore(all): add keep-sorted comments to Sass imports
PiperOrigin-RevId: 509583504
2023-02-14 11:10:23 -08:00

23 lines
497 B
SCSS

//
// Copyright 2021 Google LLC
// SPDX-License-Identifier: Apache-2.0
//
// stylelint-disable selector-class-pattern --
// Selector '.md3-*' should only be used in this project.
// go/keep-sorted start
@use './test-table';
@use './test-table-theme';
// go/keep-sorted end
@include test-table.static-styles;
.md3-test-table {
@include test-table-theme.theme-styles(test-table-theme.$light-theme);
}
.md3-test-table--dark {
@include test-table-theme.theme(test-table-theme.$dark-theme);
}