Skip to content

Commit

Permalink
Merge pull request #43 from vtex-apps/fix/w-100-the-return
Browse files Browse the repository at this point in the history
Fix/w-100: The Return
  • Loading branch information
lbebber authored Mar 20, 2019
2 parents 5df2bf9 + 203185f commit 01af34c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.8.2] - 2019-03-20
### Changed

- Set width explicitly to `w-100` again

## [2.8.1] - 2019-03-20

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"vendor": "vtex",
"name": "telemarketing",
"version": "2.8.1",
"version": "2.8.2",
"title": "VTEX Telemarketing",
"defaultLocale": "pt-BR",
"description": "The VTEX telemarketing app",
Expand Down
4 changes: 2 additions & 2 deletions react/__tests__/__snapshots__/Telemarketing.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`<Telemarketing /> component should match snapshot with client 1`] = `
<DocumentFragment>
<section
class="Container-mock container flex justify-center tc c-on-emphasis h2 t-mini pa2 bg-emphasis"
class="Container-mock container flex justify-center tc c-on-emphasis h2 t-mini pa2 w-100 bg-emphasis"
>
<div
class="flex justify-between w-100 mw9"
Expand Down Expand Up @@ -180,7 +180,7 @@ exports[`<Telemarketing /> component should match snapshot with client 1`] = `
exports[`<Telemarketing /> component should match snapshot without client 1`] = `
<DocumentFragment>
<section
class="Container-mock container flex justify-center tc c-on-emphasis h2 t-mini pa2 bg-base--inverted"
class="Container-mock container flex justify-center tc c-on-emphasis h2 t-mini pa2 w-100 bg-base--inverted"
>
<div
class="flex justify-between w-100 mw9"
Expand Down
2 changes: 1 addition & 1 deletion react/components/Telemarketing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Telemarketing = (props: Props) => {

const containerClasses = classnames(
styles.container,
'flex justify-center tc c-on-emphasis h2 t-mini pa2',
'flex justify-center tc c-on-emphasis h2 t-mini pa2 w-100',
!!client ? 'bg-emphasis' : 'bg-base--inverted'
)

Expand Down

0 comments on commit 01af34c

Please sign in to comment.