Refactor font-size values in style.scss to use relative units (em) for better scalability

This commit is contained in:
2025-12-09 23:26:47 +01:00
parent 5408ee25df
commit adab4009ea
4 changed files with 20 additions and 20 deletions

View File

@@ -101,8 +101,8 @@
},
"class.Tasks.php": {
"type": "-",
"size": 17944,
"lmtime": 1764184406249,
"size": 18207,
"lmtime": 1764203726003,
"modified": false
},
"class.Users.php": {
@@ -146,13 +146,13 @@
"class.Projects.php": {
"type": "-",
"size": 27334,
"lmtime": 1745261880238,
"lmtime": 1764203265163,
"modified": false
},
"class.Tasks.php": {
"type": "-",
"size": 21487,
"lmtime": 1764109249950,
"size": 21638,
"lmtime": 1764203740414,
"modified": false
},
"class.Users.php": {
@@ -507,8 +507,8 @@
},
"main_view.php": {
"type": "-",
"size": 34412,
"lmtime": 1764112957755,
"size": 34861,
"lmtime": 1764203691866,
"modified": false
},
"task_edit.php": {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1327,47 +1327,47 @@ body>.top {
color: $cBlack;
&.zoom-100 {
font-size: 130%;
font-size: 1.2em;
}
&.zoom-90 {
font-size: 120%;
font-size: 1.15em;
}
&.zoom-80 {
font-size: 110%;
font-size: 1.1em;
}
&.zoom-70 {
font-size: 100%;
font-size: 1.05em;
}
&.zoom-60 {
font-size: 95%;
font-size: 1em;
}
&.zoom-50 {
font-size: 85%;
font-size: 0.95em;
}
&.zoom-40 {
font-size: 80%;
font-size: 0.9em;
}
&.zoom-30 {
font-size: 75%;
font-size: 0.85em;
}
&.zoom-20 {
font-size: 75%;
font-size: 0.8em;
}
&.zoom-10 {
font-size: 70%;
font-size: 0.75em;
}
&.zoom-0 {
font-size: 70%;
font-size: 0.7em;
}
}
}