Daniel Freedman cc5a7db27d fix(field & dependents)!: convert to use text-type tokens
PiperOrigin-RevId: 510171224
2023-02-16 09:51:22 -08:00

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'
);
}