Skip to content

Commit

Permalink
update to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Grekov committed Nov 30, 2020
1 parent 323a3fb commit ba71105
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.1.1

* Fix `navigation` styles for case, when menu content doesn't fit in screen.

## v1.1.0

* Add fix for `styleguide-iframe` for components, which depend on parents dimensions.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "badoo-styleguide",
"version": "1.1.0",
"version": "1.1.1",
"description": "Badoo styleguide used to develop UI components for the Web and React Native",
"author": "badoo",
"license": "MIT",
Expand Down
6 changes: 5 additions & 1 deletion src/__tests__/__snapshots__/app-view.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ exports[`App-view generic tests When app is open 1`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
>
<div
className="sc-fzoLsD kcSfKA"
Expand Down Expand Up @@ -343,6 +343,7 @@ exports[`App-view generic tests When component is open 1`] = `
.c13 {
position: relative;
max-height: 100vh;
font-family: sans-serif;
}
Expand Down Expand Up @@ -1190,6 +1191,7 @@ exports[`App-view generic tests When filter doesn\`t show components 1`] = `
.c13 {
position: relative;
max-height: 100vh;
font-family: sans-serif;
}
Expand Down Expand Up @@ -1637,6 +1639,7 @@ exports[`App-view generic tests When filter show components 1`] = `
.c13 {
position: relative;
max-height: 100vh;
font-family: sans-serif;
}
Expand Down Expand Up @@ -2489,6 +2492,7 @@ exports[`App-view generic tests When we open component from app 1`] = `
.c13 {
position: relative;
max-height: 100vh;
font-family: sans-serif;
}
Expand Down
14 changes: 7 additions & 7 deletions src/__tests__/__snapshots__/app.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ exports[`App generic tests When app is is unmounted 1`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
>
<div
className="sc-fzoLsD kcSfKA"
Expand Down Expand Up @@ -279,7 +279,7 @@ exports[`App generic tests When app is open 1`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
>
<div
className="sc-fzoLsD kcSfKA"
Expand Down Expand Up @@ -463,7 +463,7 @@ exports[`App generic tests When app receive no sections 1`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
/>
</div>
</aside>
Expand Down Expand Up @@ -588,7 +588,7 @@ exports[`App search tests When we clear search request 1`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
>
<div
className="sc-fzoLsD kcSfKA"
Expand Down Expand Up @@ -743,7 +743,7 @@ exports[`App search tests When we clear search request 2`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
>
<div
className="sc-fzoLsD kcSfKA"
Expand Down Expand Up @@ -927,7 +927,7 @@ exports[`App search tests When we search, we have results filtered 1`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
>
<div
className="sc-fzoLsD kcSfKA"
Expand Down Expand Up @@ -1111,7 +1111,7 @@ exports[`App search tests When we search, we have results filtered 2`] = `
</div>
</div>
<nav
className="sc-fzozJi edkQqe"
className="sc-fzozJi cOizXc"
>
<div
className="sc-fzoLsD kcSfKA"
Expand Down
1 change: 1 addition & 0 deletions src/components/navigation/navigation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import NavigationSection from '../navigation-section/navigation-section';

const NavigationBlock = styled.nav`
position: relative;
max-height: 100vh;
font-family: sans-serif;
`;

Expand Down

0 comments on commit ba71105

Please sign in to comment.