diff --git a/src/app/modules/admin/admin.component.html b/src/app/modules/admin/admin.component.html index 3fc1843..2a55adb 100644 --- a/src/app/modules/admin/admin.component.html +++ b/src/app/modules/admin/admin.component.html @@ -1,2 +1,4 @@ -
\ No newline at end of file +
+ +
diff --git a/src/app/modules/footer/footer.component.html b/src/app/modules/footer/footer.component.html index 28c0d7d..50975be 100644 --- a/src/app/modules/footer/footer.component.html +++ b/src/app/modules/footer/footer.component.html @@ -1 +1,18 @@ -

footer works!

+
+
+
+
ESTAMOS PARA AYUDARTE
+
+ +
+
+
+
+
+
VOLVER
+
+ +
+
+
+
diff --git a/src/app/modules/footer/footer.component.scss b/src/app/modules/footer/footer.component.scss index e69de29..585815a 100644 --- a/src/app/modules/footer/footer.component.scss +++ b/src/app/modules/footer/footer.component.scss @@ -0,0 +1,7 @@ +.img-button-accesibilidad { + width: 60px; +} + +.img-button-volver { + width: 40px; +} diff --git a/src/app/modules/formas-pago/formas-pago.component.html b/src/app/modules/formas-pago/formas-pago.component.html index 00de206..cf3e97d 100644 --- a/src/app/modules/formas-pago/formas-pago.component.html +++ b/src/app/modules/formas-pago/formas-pago.component.html @@ -7,18 +7,18 @@
- +

ESTA TERMINAL OPERA CON

tarjetas y

- +
CONTINUAR
- +

SI PREFERIS PAGAR EN EFECTIVO

te esperamos en la caja

diff --git a/src/app/modules/formas-pago/formas-pago.component.scss b/src/app/modules/formas-pago/formas-pago.component.scss index a556392..56e52c1 100644 --- a/src/app/modules/formas-pago/formas-pago.component.scss +++ b/src/app/modules/formas-pago/formas-pago.component.scss @@ -5,5 +5,4 @@ height: 70px; -webkit-transform: translateX(-50%); transform: translateX(-50%); - border-radius: 50%; } diff --git a/src/scss/styles-bootstrap.scss b/src/scss/styles-bootstrap.scss index 526ed90..1bfbe01 100644 --- a/src/scss/styles-bootstrap.scss +++ b/src/scss/styles-bootstrap.scss @@ -5,11 +5,13 @@ $primary: #aa006b; $secondary: #00acd8; $info: #f4b223; +$light: #e6e7e9; $theme-colors: ( primary: $primary, secondary: $secondary, - info: $info + info: $info, + light: $light ); @import "node_modules/bootstrap/scss/bootstrap"; diff --git a/src/styles.scss b/src/styles.scss index 0758089..329b974 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -21,6 +21,17 @@ body { user-select: none; } +.btn-effect { + transition: all 0.3s; + &:hover { + cursor: pointer; + opacity: 0.8; + } + &:active { + transform: scale(1.02); + } +} + .cursor-pointer { cursor: pointer; } @@ -32,3 +43,7 @@ p { .rounded { border-radius: 1.5rem !important; } + +.rounded-sm { + border-radius: 0.5rem !important; +}