Commit 51d9936358dbacd0fa40797bfec7177623eedf3e

Authored by Nicolás Guarnieri
Exists in master

Merge branch 'master' into 'master'

Master (pmarco)

See merge request Wrappers/wrapper-demo!22
src/sass/_contenedor.scss
1 body { 1 body {
2 background-color: #cccccc; 2 background-color: #cccccc;
3 } 3 }
4 4
5 .contenedor { 5 .contenedor {
6 background-image: radial-gradient(circle at 50% 50%, #ebecf1, #abaec3); 6 background-image: radial-gradient(circle at 50% 50%, #ebecf1, #abaec3);
7 min-height: 600px; 7 min-height: 600px;
8 min-width: 800px; 8 min-width: 800px;
9 } 9 }
10 10
11 .grilla-articulo { 11 .grilla-articulo {
12 background-color: rgba(0, 0, 0, 0.8); 12 background-color: rgba(0, 0, 0, 0.8);
13 height: 430px; 13 height: 430px;
14 } 14 }
15
16 .crear-nota-pedido {
17 form {
18 margin-bottom: 0;
19 }
20 table {
21 margin-bottom: 0;
22 }
23 }
24 15
src/sass/_crear-nota-pedido.scss
File was created 1 .crear-nota-pedido {
2 form {
3 margin-bottom: 0;
4 }
5 table {
6 margin-bottom: 0;
7 }
8 &-fecha {
9 input[type="date"]::-webkit-clear-button {
10 display: none;
11 }
12 }
13 }
14
src/sass/general.scss
1 @import 'bootstrap'; 1 @import 'bootstrap';
2 @import 'botonera'; 2 @import 'botonera';
3 @import 'botonera-lateral'; 3 @import 'botonera-lateral';
4 @import 'botonera-principal'; 4 @import 'botonera-principal';
5 @import 'botonera-secundaria'; 5 @import 'botonera-secundaria';
6 @import 'contenedor'; 6 @import 'contenedor';
7 @import 'lista'; 7 @import 'lista';
8 @import 'login'; 8 @import 'login';
9 @import 'panel-informativo'; 9 @import 'panel-informativo';
10 @import 'tabla'; 10 @import 'tabla';
11 @import 'teclado'; 11 @import 'teclado';
12 @import 'tabla-articulos'; 12 @import 'tabla-articulos';
13 @import 'swiper'; 13 @import 'swiper';
14 @import 'crear-nota-pedido';
14 15