Commit 87b595ddfd647168e6cb1b691003438051169e11

Authored by Jose Pinto
1 parent ffdf5ff28e
Exists in master

ok height botonera

Showing 1 changed file with 5 additions and 5 deletions   Show diff stats
src/sass/_botonera-secundaria.scss
1 .botonera-secundaria { 1 .botonera-secundaria {
2 .row { 2 .row {
3 border-radius: 5px; 3 border-radius: 5px;
4 overflow: hidden; 4 overflow: hidden;
5 } 5 }
6 .btn { 6 .btn {
7 display: grid; 7 display: grid;
8 border-width: 3px !important; 8 border-width: 3px !important;
9 border-radius: .7rem !important; 9 border-radius: .7rem !important;
10 margin-right: 1px; 10 margin-right: 1px;
11 width: calc(100% - 1px); 11 width: calc(100% - 1px);
12 margin-bottom: 1px; 12 margin-bottom: 1px;
13 13
14 &:hover{ 14 &:hover{
15 background-color: #d8b07d; 15 background-color: #d8b07d;
16 border-color: #e09125 !important; 16 border-color: #e09125 !important;
17 } 17 }
18 &:focus{ 18 &:focus{
19 box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); 19 box-shadow: 0 0 0 0.2rem rgb(216, 176, 125);
20 } 20 }
21 img{ 21 img{
22 width: 50%; 22 width: 50%;
23 margin: auto 23 margin: auto
24 } 24 }
25 span{ 25 span{
26 font-size: 11px; 26 font-size: 11px;
27 margin-left: -.25rem; 27 margin-left: -.25rem;
28 margin-right: -.25rem; 28 margin-right: -.25rem;
29 } 29 }
30 } 30 }
31 @media(max-width: 992px){ 31 @media(max-width: 992px){
32 .btn{ 32 .btn{
33 font-weight: 700; 33 font-weight: 700;
34 } 34 }
35 } 35 }
36 @media(min-width: 1200px){ 36 @media(min-width: 1200px){
37 .btn{ 37 .btn{
38 min-height: 85px; 38 height: 85px !important;
39 } 39 }
40 .foca-facturador-px{ 40 .foca-facturador-px{
41 padding-left: 3rem; 41 padding-left: 3rem;
42 padding-right: 3rem; 42 padding-right: 3rem;
43 } 43 }
44 } 44 }
45 45
46 @media(min-width: 992px) and (max-width: 1200px){ 46 @media(min-width: 992px) and (max-width: 1200px){
47 .btn{ 47 .btn{
48 min-height: 73px; 48 height: 73px !important;
49 } 49 }
50 } 50 }
51 51
52 @media(min-width: 768px) and (max-width: 992px){ 52 @media(min-width: 768px) and (max-width: 992px){
53 .btn{ 53 .btn{
54 min-height: 62px; 54 height: 62px !important;
55 } 55 }
56 } 56 }
57 57
58 @media(min-width: 576px) and (max-width: 768px){ 58 @media(min-width: 576px) and (max-width: 768px){
59 .btn{ 59 .btn{
60 max-height: 59px; 60 max-height: 51px;
61 } 61 }
62 } 62 }
63 63
64 @media(max-width: 576px) { 64 @media(max-width: 576px) {
65 .btn{ 65 .btn{
66 max-height: 16vw; 66 max-height: 13vw;
67 } 67 }
68 } 68 }
69 69
70 } 70 }
71 71