Abhinay Omkar 73e9f83c67 feat(tabs): Add theming API to tabs
PiperOrigin-RevId: 384998637
2021-07-15 13:36:10 -07:00

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