mirror of
https://github.com/google/pebble.git
synced 2025-11-30 03:02:24 -05:00
11 lines
128 B
SCSS
11 lines
128 B
SCSS
@mixin hide-text {
|
|
overflow: hidden;
|
|
|
|
&:before {
|
|
content: "";
|
|
display: block;
|
|
width: 0;
|
|
height: 100%;
|
|
}
|
|
}
|