Spaces:
Running on Zero
Running on Zero
Commit ·
a8600be
1
Parent(s): a73cc72
Move notice font-size override to app.css
Browse filesRemove inline <style> block from app.html; set font-size and line-height
directly in the existing .app-notice and .notice-list li rules in app.css.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- static/app.css +2 -2
- templates/app.html +0 -2
static/app.css
CHANGED
|
@@ -331,11 +331,11 @@ body:not(.dark) #custom-run-btn *{color:#ffffff!important;-webkit-text-fill-colo
|
|
| 331 |
padding:3px 12px;background:rgba(255,0,128,.08);border-radius:6px;color:#ff4da6;font-weight:500;
|
| 332 |
}
|
| 333 |
|
| 334 |
-
.app-notice{padding:10px 24px;font-size:
|
| 335 |
.app-notice a{color:#ff4da6;text-decoration:none}
|
| 336 |
.app-notice a:hover{text-decoration:underline}
|
| 337 |
.notice-list{list-style:none;display:flex;flex-direction:column;gap:3px;margin:0;padding:0}
|
| 338 |
-
.notice-list li{padding-left:14px;position:relative;line-height:1.
|
| 339 |
.notice-list li::before{content:"·";position:absolute;left:0;color:#d4d4d8!important;font-weight:700}
|
| 340 |
|
| 341 |
.privacy-details{border-top:1px solid #4d0030;font-size:11px;color:#d4d4d8}
|
|
|
|
| 331 |
padding:3px 12px;background:rgba(255,0,128,.08);border-radius:6px;color:#ff4da6;font-weight:500;
|
| 332 |
}
|
| 333 |
|
| 334 |
+
.app-notice{padding:10px 24px;font-size:9.5px;color:#d4d4d8!important;border-bottom:1px solid #4d0030;background:rgba(255,255,255,.015)}
|
| 335 |
.app-notice a{color:#ff4da6;text-decoration:none}
|
| 336 |
.app-notice a:hover{text-decoration:underline}
|
| 337 |
.notice-list{list-style:none;display:flex;flex-direction:column;gap:3px;margin:0;padding:0}
|
| 338 |
+
.notice-list li{padding-left:14px;position:relative;line-height:1.5;color:#d4d4d8!important}
|
| 339 |
.notice-list li::before{content:"·";position:absolute;left:0;color:#d4d4d8!important;font-weight:700}
|
| 340 |
|
| 341 |
.privacy-details{border-top:1px solid #4d0030;font-size:11px;color:#d4d4d8}
|
templates/app.html
CHANGED
|
@@ -1,5 +1,3 @@
|
|
| 1 |
-
<style>.app-notice {{ font-size: 9.5px; }} .notice-list li {{ line-height: 1.5; }}</style>
|
| 2 |
-
|
| 3 |
<div class="app-shell">
|
| 4 |
|
| 5 |
<div class="app-header">
|
|
|
|
|
|
|
|
|
|
| 1 |
<div class="app-shell">
|
| 2 |
|
| 3 |
<div class="app-header">
|