mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
21 lines
359 B
SCSS
21 lines
359 B
SCSS
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
@use '@material/tab/mixins' as tab;
|
|
|
|
@mixin static-styles() {
|
|
:host {
|
|
@include tab.static-styles();
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
display: flex;
|
|
flex: 1 0 auto;
|
|
justify-content: center;
|
|
outline: none;
|
|
position: relative;
|
|
}
|
|
}
|