Material Web Team 88b164b00f chore: move segmented button into the new directory
PiperOrigin-RevId: 461113111
2022-07-14 20:51:21 -07:00

22 lines
385 B
SCSS

//
// Copyright 2022 Google LLC
// SPDX-License-Identifier: Apache-2.0
//
// stylelint-disable selector-class-pattern -- allow `md3-` class selectors.
@mixin static-styles() {
:host {
display: flex;
outline: none;
}
.md3-segmented-button-set {
display: grid;
grid-auto-columns: 1fr;
grid-auto-flow: column;
grid-auto-rows: auto;
width: 100%;
}
}