mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
26 lines
460 B
SCSS
26 lines
460 B
SCSS
//
|
|
// Copyright 2022 Google LLC
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
// stylelint-disable selector-class-pattern --
|
|
// Selector '.md3-*' should only be used in this project.
|
|
|
|
@use '../../sass/typography';
|
|
|
|
@mixin styles() {
|
|
.md3-autocomplete {
|
|
display: inline-flex;
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
@function resolve-typography-tokens($tokens) {
|
|
@return typography.resolve-tokens(
|
|
$tokens,
|
|
'input-text',
|
|
'label-text',
|
|
'supporting-text'
|
|
);
|
|
}
|