mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
25 lines
347 B
SCSS
25 lines
347 B
SCSS
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
@use '@material/switch/switch' as mdc-switch;
|
|
|
|
@mixin static-styles() {
|
|
@include mdc-switch.static-styles-without-ripple;
|
|
|
|
:host {
|
|
display: inline-flex;
|
|
outline: none;
|
|
}
|
|
|
|
input {
|
|
@include input;
|
|
}
|
|
}
|
|
|
|
@mixin input() {
|
|
display: none;
|
|
}
|