From cfb1576bcad6e148255a0827117cd4dd7b8ad55c Mon Sep 17 00:00:00 2001 From: kim jeong yong Date: Wed, 18 Mar 2026 14:24:44 +0900 Subject: [PATCH] =?UTF-8?q?=EC=94=AC=20=EC=BB=B4=ED=8F=AC=EB=84=8C?= =?UTF-8?q?=ED=8A=B8=EC=97=90=EC=84=9C=20=EC=97=94=ED=8A=B8=EB=A6=AC=20?= =?UTF-8?q?=EB=A1=9C=EA=B3=A0=20=EB=B7=B0=20=EC=8A=A4=ED=83=80=EC=9D=BC=20?= =?UTF-8?q?=EB=B0=8F=20DOM=20=EC=9A=94=EC=86=8C=20=EC=A0=9C=EA=B1=B0.=20-?= =?UTF-8?q?=20scene.less=EC=97=90=EC=84=9C=20`.entryLogoView`=20=ED=81=B4?= =?UTF-8?q?=EB=9E=98=EC=8A=A4=20=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C.=20-=20init.js=EC=97=90=EC=84=9C=20=EB=A1=9C=EA=B3=A0?= =?UTF-8?q?=20=EC=9A=94=EC=86=8C=20=EC=83=9D=EC=84=B1=20=EC=BD=94=EB=93=9C?= =?UTF-8?q?=20=EB=B0=8F=20=EA=B4=80=EB=A0=A8=20=ED=85=8D=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=20=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=A0=9C=EA=B1=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/css/components/scene.less | 18 ------------------ src/util/init.js | 6 ------ 2 files changed, 24 deletions(-) diff --git a/src/css/components/scene.less b/src/css/components/scene.less index 8e60021571..51d87abc47 100644 --- a/src/css/components/scene.less +++ b/src/css/components/scene.less @@ -23,24 +23,6 @@ body { } } - .entryLogoView { - width: 120px; - display: flex; - align-items: center; - line-height: 24px; - font-size: 12px; - z-index: 10; - padding: 0 8px; - display: flex; - flex-direction: row-reverse; - align-items: center; - background-color: @baseblue; - color: @white; - user-select: none; - white-space: nowrap; - overflow: hidden; - } - .entryBlockCountView { background-color: @baseblue; z-index: 10; diff --git a/src/util/init.js b/src/util/init.js index 527f7a4890..33fe49b3f9 100644 --- a/src/util/init.js +++ b/src/util/init.js @@ -365,12 +365,6 @@ Entry.createDom = function (container, type) { this.sceneView = sceneView; this.scene.generateView(this.sceneView, type); - const logoView = Entry.createElement('div'); - logoView.addClass('entryLogoView'); - topFloatingView.appendChild(logoView); - this.logoView = logoView; - logoView.textContent = 'ⓒ NAVER Connect'; - const blockCountViewerView = Entry.createElement('div'); blockCountViewerView.addClass('entryBlockCountView'); topFloatingView.appendChild(blockCountViewerView);