mirror of
https://github.com/material-components/material-web.git
synced 2024-11-09 16:19:39 +03:00
601ebb669c
BREAKING CHANGE: Rename `@material/web/button/lib` to `@material/web/button/internal`. Prefer not using internal files. PiperOrigin-RevId: 549999271
16 lines
234 B
SCSS
16 lines
234 B
SCSS
//
|
|
// Copyright 2021 Google LLC
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
@mixin styles() {
|
|
.button__touch {
|
|
position: absolute;
|
|
top: 50%;
|
|
height: 48px;
|
|
left: 0;
|
|
right: 0;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|