1
0
mirror of https://github.com/tabler/tabler.git synced 2026-06-17 12:50:03 +04:00

Add responsive font size for form controls on mobile devices (#2248)

This commit is contained in:
Paweł Kuna
2025-04-16 14:14:30 +02:00
committed by GitHub
parent 2b6d6b184b
commit 6d6d1bde4c
2 changed files with 15 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@tabler/core": patch
---
Add responsive font size for form controls on mobile devices
+10
View File
@@ -238,4 +238,14 @@ label[for="floating-input"] {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
}
/**
Forms on mobile devices
*/
.form-control,
.form-select {
@include media-breakpoint-down(sm) {
font-size: 1rem;
}
} }