mirror of
https://github.com/google/pebble.git
synced 2025-03-15 08:41:21 +00:00
10 lines
128 B
SCSS
10 lines
128 B
SCSS
@mixin hide-text {
|
|
overflow: hidden;
|
|
|
|
&:before {
|
|
content: "";
|
|
display: block;
|
|
width: 0;
|
|
height: 100%;
|
|
}
|
|
}
|