Skip to content

Commit 203eedc

Browse files
authored
Merge pull request #3054 from entrylabs/issue/10251-2
씬 컴포넌트에서 엔트리 로고 뷰 스타일 및 DOM 요소 제거.
2 parents fab2095 + cfb1576 commit 203eedc

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

src/css/components/scene.less

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,6 @@ body {
2323
}
2424
}
2525

26-
.entryLogoView {
27-
width: 120px;
28-
display: flex;
29-
align-items: center;
30-
line-height: 24px;
31-
font-size: 12px;
32-
z-index: 10;
33-
padding: 0 8px;
34-
display: flex;
35-
flex-direction: row-reverse;
36-
align-items: center;
37-
background-color: @baseblue;
38-
color: @white;
39-
user-select: none;
40-
white-space: nowrap;
41-
overflow: hidden;
42-
}
43-
4426
.entryBlockCountView {
4527
background-color: @baseblue;
4628
z-index: 10;

src/util/init.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -365,12 +365,6 @@ Entry.createDom = function (container, type) {
365365
this.sceneView = sceneView;
366366
this.scene.generateView(this.sceneView, type);
367367

368-
const logoView = Entry.createElement('div');
369-
logoView.addClass('entryLogoView');
370-
topFloatingView.appendChild(logoView);
371-
this.logoView = logoView;
372-
logoView.textContent = 'ⓒ NAVER Connect';
373-
374368
const blockCountViewerView = Entry.createElement('div');
375369
blockCountViewerView.addClass('entryBlockCountView');
376370
topFloatingView.appendChild(blockCountViewerView);

0 commit comments

Comments
 (0)