Commit 5d6de97b6488e7ebafd04cb4bac44e42953148d6
1 parent
ff3413e682
Exists in
master
and in
1 other branch
Agregada clase css.
Showing
1 changed file
with
7 additions
and
0 deletions
 
Show diff stats
src/styles.scss
| 1 | html, | 1 | html, | 
| 2 | body { | 2 | body { | 
| 3 | height: 100% !important; | 3 | height: 100% !important; | 
| 4 | width: 100% !important; | 4 | width: 100% !important; | 
| 5 | } | 5 | } | 
| 6 | 6 | ||
| 7 | .blur { | 7 | .blur { | 
| 8 | filter: blur(10px); | 8 | filter: blur(10px); | 
| 9 | -webkit-filter: blur(10px); | 9 | -webkit-filter: blur(10px); | 
| 10 | } | 10 | } | 
| 11 | |||
| 12 | .disable-user-select { | ||
| 13 | -webkit-user-select: none; | ||
| 14 | -moz-user-select: none; | ||
| 15 | -ms-user-select: none; | ||
| 16 | user-select: none; | ||
| 17 | } | ||
| 11 | 18 |