mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
23 lines
497 B
SCSS
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);
|
|
}
|