Skip to content

Commit 7112c0a

Browse files
committed
ui: fix font size
1 parent 4e33958 commit 7112c0a

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

frontend/popup.css

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ body {
3535
}
3636

3737
h1 {
38-
font-size: 1.4em;
38+
font-size: 1.5em;
3939
margin: 0 0 8px 0;
4040
font-weight: 600;
4141
}
4242

4343
p {
44-
font-size: 0.9em;
44+
font-size: 1em;
4545
color: var(--subtle-text-color);
4646
margin: 0 0 20px 0;
4747
}
@@ -103,7 +103,7 @@ button:hover {
103103
}
104104

105105
.theme-label {
106-
font-size: 0.9em;
106+
font-size: 1.2 em;
107107
color: var(--subtle-text-color);
108108
}
109109

@@ -151,3 +151,16 @@ input:checked + .slider {
151151
input:checked + .slider:before {
152152
transform: translateX(22px);
153153
}
154+
155+
.footer {
156+
border-top: 1px solid var(--border-color);
157+
margin-top: 10px;
158+
font-size: 0.9em;
159+
color: var(--subtle-text-color);
160+
padding-top: 20px;
161+
text-align: center;
162+
}
163+
164+
.footer p {
165+
margin: 4px 0;
166+
}

frontend/popup.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ <h1>CodeTranslateAI</h1>
3838
</label>
3939
</div>
4040
</div>
41+
<div class="footer">
42+
<p>CodeTranslateAI © 2025</p>
43+
<p>Version 2.0.0</p>
44+
</div>
4145
<script src="popup.js"></script>
4246
</body>
4347
</html>

0 commit comments

Comments
 (0)