From 2a21fdc5363a423022fc66c0c6a958ebe2bd09a4 Mon Sep 17 00:00:00 2001 From: devartes Date: Fri, 27 Jan 2023 20:47:41 -0300 Subject: [PATCH] style: adicionando estilo do carrosel --- styles/css/vtex.rich-text.css | 16 +++++++++++++++- styles/css/vtex.store-components.css | 4 ++++ .../vtex.store-components.scss | 8 +++++++- styles/sass/pages/product/vtex.rich-text.scss | 18 ++++++++++++++++++ 4 files changed, 44 insertions(+), 2 deletions(-) diff --git a/styles/css/vtex.rich-text.css b/styles/css/vtex.rich-text.css index 34c4328..70bf4c7 100644 --- a/styles/css/vtex.rich-text.css +++ b/styles/css/vtex.rich-text.css @@ -6,4 +6,18 @@ 1800px + : Big desktop */ /* Media Query M3 */ -/* Grid breakpoints */ \ No newline at end of file +/* Grid breakpoints */ +.container--slider-title { + display: flex; + justify-content: center; + margin-top: 16px; + margin-bottom: 32px; +} +.container--slider-title .wrapper--slider-title .heading--slider-title { + font-weight: 400; + font-size: 24px; + line-height: 38px; + text-align: center; + color: #575757; + margin: 0; +} \ No newline at end of file diff --git a/styles/css/vtex.store-components.css b/styles/css/vtex.store-components.css index 16129f4..d543552 100644 --- a/styles/css/vtex.store-components.css +++ b/styles/css/vtex.store-components.css @@ -386,4 +386,8 @@ font-size: 16px; line-height: 22px; color: #929292; +} + +.installmentsPrice { + display: none; } \ No newline at end of file diff --git a/styles/sass/pages/product/store-components/vtex.store-components.scss b/styles/sass/pages/product/store-components/vtex.store-components.scss index 6b268e1..1f07099 100644 --- a/styles/sass/pages/product/store-components/vtex.store-components.scss +++ b/styles/sass/pages/product/store-components/vtex.store-components.scss @@ -238,7 +238,7 @@ :global(.vtex-input-prefix__group) { margin-top: 8px; height: 49px; - border-radius: 0; + border-radius: 0; :global(.vtex-address-form-4-x-input)::placeholder { color: #afafaf; font-weight: 400; @@ -402,3 +402,9 @@ } } } + +//Slider + +.installmentsPrice { + display: none; +} diff --git a/styles/sass/pages/product/vtex.rich-text.scss b/styles/sass/pages/product/vtex.rich-text.scss index e69de29..50085f9 100644 --- a/styles/sass/pages/product/vtex.rich-text.scss +++ b/styles/sass/pages/product/vtex.rich-text.scss @@ -0,0 +1,18 @@ +// Slider + +.container--slider-title { + display: flex; + justify-content: center; + margin-top: 16px; + margin-bottom: 32px; + .wrapper--slider-title { + .heading--slider-title { + font-weight: 400; + font-size: 24px; + line-height: 38px; + text-align: center; + color: #575757; + margin: 0; + } + } +}