diff --git a/index.html b/index.html
index 7a2442e..1804a11 100644
--- a/index.html
+++ b/index.html
@@ -35,6 +35,7 @@
+
diff --git a/src/sass/_botonera-secundaria.scss b/src/sass/_botonera-secundaria.scss
index 4c03438..3ae0c99 100644
--- a/src/sass/_botonera-secundaria.scss
+++ b/src/sass/_botonera-secundaria.scss
@@ -15,6 +15,9 @@
background-color: #d8b07d;
border-color: #e09125 !important;
}
+ &:focus{
+ box-shadow: 0 0 0 0.2rem rgb(216, 176, 125);
+ }
img{
width: 50%;
margin: auto
@@ -25,4 +28,9 @@
margin-right: -.25rem;
}
}
+ @media(max-width: 992px){
+ .btn{
+ font-weight: 700;
+ }
+ }
}
diff --git a/src/sass/_foca-crear.scss b/src/sass/_foca-crear.scss
index 207dc67..65da686 100644
--- a/src/sass/_foca-crear.scss
+++ b/src/sass/_foca-crear.scss
@@ -11,6 +11,19 @@
margin: auto;
margin-right: 0;
}
+
+ @media(max-width: 992px){
+ border-top: none !important;
+ border-right: none !important;
+ border-left: none !important;
+ border-bottom: 2px solid #FFF !important;
+ &:last-child{
+ border-left: 2px solid #FFF !important;
+ }
+ &:first-child{
+ border-top: 2px solid #FFF !important;
+ }
+ }
}
@media(min-width: 992px){
diff --git a/src/sass/_tabla-articulos.scss b/src/sass/_tabla-articulos.scss
index 9c03d14..137b83c 100644
--- a/src/sass/_tabla-articulos.scss
+++ b/src/sass/_tabla-articulos.scss
@@ -17,4 +17,16 @@
thead > tr > th {
line-height: 30px
}
+
+ @media(max-width: 992px){
+ tr{
+ display: block;
+ span{
+ line-height: 35px;
+ }
+ }
+ tfoot tr{
+ display: flex;
+ }
+ }
}