-

+
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;
+}