Skip to content

Commit

Permalink
revert text container class name
Browse files Browse the repository at this point in the history
  • Loading branch information
jjspace committed Jun 27, 2024
1 parent 769e8f8 commit e1657c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/engine/Source/Scene/CreditDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,16 +246,16 @@ function appendCss(container) {
padding: 0 5px;
}
.cesium-credit-screenContainer *,
.cesium-credit-textContainer *,
.cesium-credit-logoContainer * {
display: inline;
}
.cesium-credit-screenContainer a:hover {
.cesium-credit-textContainer a:hover {
color: ${highlightColor}
}
.cesium-credit-screenContainer .cesium-credit-wrapper:first-of-type {
.cesium-credit-textContainer .cesium-credit-wrapper:first-of-type {
padding-left: 5px;
}
`;
Expand Down Expand Up @@ -346,7 +346,7 @@ function CreditDisplay(container, delimiter, viewport) {
container.appendChild(cesiumCreditContainer);

const screenContainer = document.createElement("div");
screenContainer.className = "cesium-credit-screenContainer";
screenContainer.className = "cesium-credit-textContainer";
screenContainer.style.display = "inline";
container.appendChild(screenContainer);

Expand Down

0 comments on commit e1657c6

Please sign in to comment.