fix: 화면 설정의 불필요한 안내 문구를 제거한다

This commit is contained in:
2026-08-22 04:35:24 +00:00
parent bd894398b5
commit 377c8f28b6
2 changed files with 3 additions and 10 deletions
+3 -1
View File
@@ -1596,7 +1596,9 @@ test('화면 설정에서 화면 폭과 개인 CSS를 저장하고 게임 설정
await waitForVisualAssets(page);
await expect(page.locator('.title-row')).toContainText('화 면 설 정');
await expect(page.locator('.scope-note')).toContainText('게임 상태에는 영향을 주지 않습니다.');
await expect(
page.getByText('이 설정은 이 기기의 화면 표시만 바꾸며 게임 상태에는 영향을 주지 않습니다.')
).toHaveCount(0);
await expect(page.locator('#set_my_setting')).toHaveCount(0);
await expect(page.locator('#custom_css')).toBeVisible();
expect(state.settingMutations).toHaveLength(0);
@@ -86,8 +86,6 @@ onBeforeUnmount(() => {
<RouterLink class="legacy-button legacy-button--navigation" to="/">돌아가기</RouterLink>
</div>
<p class="scope-note"> 설정은 기기의 화면 표시만 바꾸며 게임 상태에는 영향을 주지 않습니다.</p>
<section class="settings-grid">
<article class="settings-column">
<h2 class="section-title">화면 크기와 배치</h2>
@@ -229,17 +227,10 @@ onBeforeUnmount(() => {
.title-row .legacy-button {
min-width: 90px;
}
.scope-note,
.css-hint {
margin: 0;
color: orange;
}
.scope-note {
border: 1px solid #666;
border-top: 0;
padding: 7px 10px;
text-align: center;
}
.settings-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));