Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions manifest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ const manifest = {
description: '한성대학교 종합정보시스템 시간표 및 수업계획서 조회 페이지의 가독성을 높입니다.',
action: {
default_popup: 'index.html',
icons: {
'16': 'images/icon/16.png',
'32': 'images/icon/32.png',
'48': 'images/icon/48.png',
'128': 'images/icon/128.png',
},
},
icons: {
'16': 'images/icon/16.png',
Expand All @@ -32,7 +26,7 @@ const manifest = {
matches: ['*://*/*'],
},
],
permissions: ['scripting', 'storage'],
permissions: ['storage'],
} as ManifestV3Export;

export default manifest;
17 changes: 1 addition & 16 deletions src/styles/shadow.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,8 @@
line-height: 1.1;
}

/* ============================================= */
/* 1) prefers-color-scheme: light 일 때 재정의 */
/* ============================================= */
@media (prefers-color-scheme: light) {
:host {
color: #213547;
background-color: #ffffff;
}
:host a:hover {
color: #747bff;
}
:host button {
background-color: #f9f9f9;
}
}

/* ====== Tailwind 변수들을 :host에서 선언 ====== */

:host {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
Expand Down
Loading