Skip to content

Commit

Permalink
Merge pull request #5 from trendmicro-frontend/fix/overflow-hidden-on…
Browse files Browse the repository at this point in the history
…-inactive-content

Fixed inactive content overflow
  • Loading branch information
roth1002 authored Aug 21, 2018
2 parents 1c5d4c8 + ee77c77 commit 93a1e6e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
6 changes: 5 additions & 1 deletion dist/react-navs.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/react-navs.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
</head>
<body>
<div id="container"></div>
<script type="text/javascript" src="bundle.js?cc452d7b43cce65d3c29"></script></body>
<script type="text/javascript" src="bundle.js?5363679f0ad15f7adad7"></script></body>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trendmicro/react-navs",
"version": "0.11.4",
"version": "0.11.5",
"description": "Trend Micro Components: React Navs",
"main": "lib/index.js",
"files": [
Expand Down
6 changes: 5 additions & 1 deletion src/tab.styl
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
.tab-content > .tab-pane {
display: block;
display: block;
opacity: 0;
height: 0;
padding: 0;
margin: 0;
pointer-events: none;
overflow: hidden;
}

.tab-content > .active {
Expand Down

0 comments on commit 93a1e6e

Please sign in to comment.