1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-15 07:25:54 +00:00

Use ha-line-height css tokens in codebase (#25468)

This commit is contained in:
Wendelin
2025-05-15 11:57:17 +02:00
committed by GitHub
parent 5bcbe98f8e
commit d2cc4a624e
109 changed files with 156 additions and 168 deletions

View File

@@ -38,12 +38,12 @@ class PageDescription extends HaMarkdown {
}
.title {
font-size: 42px;
line-height: 56px;
line-height: var(--ha-line-height-condensed);
padding-bottom: 8px;
}
.subtitle {
font-size: var(--ha-font-size-l);
line-height: 24px;
line-height: var(--ha-line-height-normal);
}
.root {
max-width: 800px;

View File

@@ -252,12 +252,12 @@ class HaGallery extends LitElement {
.page-footer .header {
font-size: var(--ha-font-size-l);
font-weight: var(--ha-font-weight-medium);
line-height: 28px;
line-height: var(--ha-line-height-normal);
text-align: center;
}
.page-footer .secondary {
line-height: 23px;
line-height: var(--ha-line-height-normal);
text-align: center;
}