Skip to content

Commit 53eac3c

Browse files
committed
Small fix style for dark mode
1 parent b70518f commit 53eac3c

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

src/assets/css/dark.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
}
5252
.dark .settings-tab label[name="tabName"]{
5353
background-color: #303030 !important;
54+
color: #bbbbbb;
5455
}
5556
.dark .settings-content{
5657
background-color: #303030 !important;

src/components/TabItem.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ const showWarningMessage = ref<boolean>();
130130
}
131131
.tab-item .url {
132132
font-size: 15px;
133-
font-weight: 600;
134133
cursor: pointer;
135134
overflow-wrap: anywhere;
136135
display: inline-block;

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "__MSG_extName__",
44
"short_name": "Web Tracker",
5-
"version": "2.0.21",
5+
"version": "2.0.22",
66
"description": "__MSG_extDescription__",
77
"options_page": "src/dashboard.html",
88
"default_locale": "en",

src/pages/Dashboard.vue

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,15 @@
132132
</div>
133133
</div>
134134

135-
<div class="settings-tab mt-30">
135+
<div class="settings-tab">
136136
<input
137137
type="radio"
138138
id="about-tab"
139139
name="settings-group"
140140
:checked="selectedTab == SettingsTab.About"
141141
v-on:change="selectTab(SettingsTab.About)"
142142
/>
143-
<label name="tabName" for="about-tab"
143+
<label class="about" name="tabName" for="about-tab"
144144
><img src="../assets/icons/s-about.svg" height="30" />{{
145145
t('aboutSettings.message')
146146
}}</label
@@ -221,6 +221,9 @@ function selectTab(value: SettingsTab) {
221221
width: 80%;
222222
margin: auto;
223223
}
224+
.header-block {
225+
background-color: unset !important;
226+
}
224227
.header-block .title {
225228
vertical-align: top;
226229
margin-top: 15px;
@@ -229,11 +232,15 @@ function selectTab(value: SettingsTab) {
229232
}
230233
231234
.header-block .logo {
232-
margin: 10px 10px 10px 35px;
235+
margin: 10px 10px 10px 15px;
233236
}
234237
.tab-separator {
235238
margin-left: 10px;
236239
font-size: 13px;
237240
font-weight: 600;
238241
}
242+
.about {
243+
position: fixed;
244+
bottom: 20px;
245+
}
239246
</style>

0 commit comments

Comments
 (0)