Commit 2ddb2ecb0dfe5db7ac63707c2018ff6f7b6acd19

Authored by Marcelo Puebla
1 parent 178f92310a
Exists in master and in 1 other branch develop

arreglo de estilos.

Showing 1 changed file with 13 additions and 0 deletions   Show diff stats
src/sass/_login.scss
1 .bg-gradient-login { 1 .bg-gradient-login {
2 background: linear-gradient(0, #ffffff, #e6e6e6); 2 background: linear-gradient(0, #ffffff, #e6e6e6);
3 } 3 }
4 4
5 .login-small-text { 5 .login-small-text {
6 font-size: 12px; 6 font-size: 12px;
7 } 7 }
8 8
9 @media (min-width: 768px) { 9 @media (min-width: 768px) {
10 .img-login { 10 .img-login {
11 width: 211px; 11 width: 211px;
12 } 12 }
13 } 13 }
14 14
15 @media (max-width: 768px) { 15 @media (max-width: 768px) {
16 .img-login { 16 .img-login {
17 width: 158px; 17 width: 158px;
18 } 18 }
19 } 19 }
20
21 .input-icon {
22 width: 100%;
23 pointer-events: none;
24 float: right;
25 position: absolute;
26 align-self: center;
27 z-index: 10;
28 div {
29 pointer-events: all;
30 float: right;
31 }
32 }
20 33