From e38207246dc2660778ca82727245df2b6092bda4 Mon Sep 17 00:00:00 2001 From: devartes Date: Tue, 24 Jan 2023 21:00:49 -0300 Subject: [PATCH] =?UTF-8?q?style:=20aplicando=20estilo=20no=20C=C3=B3digo?= =?UTF-8?q?=20de=20refer=C3=AAncia=20do=20Produto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/css/vtex.product-identifier.css | 23 +++++++++++++++++-- .../product/vtex.product-identifier.scss | 15 ++++++++++++ 2 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 styles/sass/pages/product/vtex.product-identifier.scss diff --git a/styles/css/vtex.product-identifier.css b/styles/css/vtex.product-identifier.css index e3aa6d5..ee10127 100644 --- a/styles/css/vtex.product-identifier.css +++ b/styles/css/vtex.product-identifier.css @@ -1,3 +1,22 @@ -.product-identifier--productReference { - margin-bottom: 1rem; +/* +0 - 600PX: Phone +600 - 900px: Table portrait +900 - 1200px: Tablet landscape +[1200 - 1800] is where our nortal styles apply +1800px + : Big desktop +*/ +/* Media Query M3 */ +/* Grid breakpoints */ +.product-identifier__label, +.product-identifier__separator { + display: none; } + +.product-identifier__value { + float: right; + font-weight: 400; + font-size: 14px; + line-height: 19px; + text-align: right; + color: rgba(146, 146, 146, 0.48); +} \ No newline at end of file diff --git a/styles/sass/pages/product/vtex.product-identifier.scss b/styles/sass/pages/product/vtex.product-identifier.scss new file mode 100644 index 0000000..2d78c00 --- /dev/null +++ b/styles/sass/pages/product/vtex.product-identifier.scss @@ -0,0 +1,15 @@ +//Código de referência Produto + +.product-identifier__label, +.product-identifier__separator { + display: none; +} + +.product-identifier__value { + float: right; + font-weight: 400; + font-size: 14px; + line-height: 19px; + text-align: right; + color: rgba(146, 146, 146, 0.48); +}