feat: Добавлен переиспользуемый компонент Card для отображения информации в формате "Заголовок - Описание"

This commit is contained in:
Ilia Mashkov
2025-11-20 10:00:24 +03:00
parent d3731ad513
commit 7f0d6d902a
5 changed files with 116 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
.card {
padding: 20px;
}
.title {
margin-bottom: 15px;
color: var(--color-blue);
font-weight: 400;
font-size: 25px;
line-height: 120%;
}
.description {
color: var(--color-text);
font-weight: 400;
font-size: 20px;
line-height: 30px;
}