Skip to content

Commit

Permalink
fix: change to visibility instead of display
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch88 committed Oct 18, 2022
1 parent b51df4e commit 54efef5
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>
<script type="module" src="/build/design-system-components.esm.js"></script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ It is recommended to use following page layout:
<head>
<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>
...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ To avoid that set the below style tag into your head of the `index.html`. This w
```html
<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add the `bal-app` to your root element. Within this component we are able to use
<head>
<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>
<meta charset="UTF-8" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ To avoid that set the below style tag into your head of the `index.html`. This w
```html
<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ To avoid that set the below style tag into your head of the `index.html`. This w
```html
<style>
.bal-body {
display: none;
visibility: hidden;
}
</style>
```
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/styles/global.base.sass
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
// Sets the defined body content visible after
// the web-components have been loaded
.bal-body.is-ready
display: block
visibility: inherit

0 comments on commit 54efef5

Please sign in to comment.