feature: Адаптивные стили для компонента Card

This commit is contained in:
Ilia Mashkov
2025-11-21 15:40:27 +03:00
parent 3f7f5d358e
commit f34f1a28de

View File

@@ -9,11 +9,19 @@
font-weight: 400; font-weight: 400;
font-size: 25px; font-size: 25px;
line-height: 120%; line-height: 120%;
@media (width <=768px) {
font-size: 16px;
}
} }
.description { .description {
color: var(--color-text); color: var(--color-text);
font-weight: 400; font-weight: 400;
font-size: 20px; font-size: 20px;
line-height: 30px; line-height: 145%;
@media (width <=768px) {
font-size: 14px;
}
} }