fix: Minimum font-size 14px, keine winzige Schrift mehr
This commit is contained in:
parent
fc02d37afe
commit
8cda46ab54
1 changed files with 5 additions and 5 deletions
|
|
@ -101,7 +101,7 @@ HTML = r"""<!DOCTYPE html>
|
||||||
.badge {
|
.badge {
|
||||||
padding: 3px 10px;
|
padding: 3px 10px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
font-size: 13px;
|
font-size: 15px;
|
||||||
font-family: system-ui, sans-serif;
|
font-family: system-ui, sans-serif;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
@ -147,7 +147,7 @@ HTML = r"""<!DOCTYPE html>
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.days-badge {
|
.days-badge {
|
||||||
font-size: 12px;
|
font-size: 14px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
padding: 3px 8px;
|
padding: 3px 8px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
|
|
@ -172,7 +172,7 @@ HTML = r"""<!DOCTYPE html>
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
font-size: 11px;
|
font-size: 14px;
|
||||||
transition: all .15s;
|
transition: all .15s;
|
||||||
}
|
}
|
||||||
.film-card.selected .checkbox-indicator {
|
.film-card.selected .checkbox-indicator {
|
||||||
|
|
@ -242,7 +242,7 @@ HTML = r"""<!DOCTYPE html>
|
||||||
color: var(--kino);
|
color: var(--kino);
|
||||||
padding: 12px 20px;
|
padding: 12px 20px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
font-size: 13px;
|
font-size: 15px;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity .3s;
|
transition: opacity .3s;
|
||||||
z-index: 200;
|
z-index: 200;
|
||||||
|
|
@ -310,7 +310,7 @@ HTML = r"""<!DOCTYPE html>
|
||||||
<div class="section-header">
|
<div class="section-header">
|
||||||
<span>🔴 Dringend</span>
|
<span>🔴 Dringend</span>
|
||||||
<span class="badge badge-urgent" id="urgent-count">0</span>
|
<span class="badge badge-urgent" id="urgent-count">0</span>
|
||||||
<span style="color:var(--muted);font-size:11px;margin-left:4px">laufen bald ab</span>
|
<span style="color:var(--muted);font-size:14px;margin-left:4px">laufen bald ab</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="film-grid" id="urgent-grid"></div>
|
<div class="film-grid" id="urgent-grid"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue