kgroad-frontend2/src/entities/NewsCard/NewsCard.scss
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

54 lines
872 B
SCSS

@import "../../shared/ui/variables.scss";
.news-card {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 24px;
img {
width: 100%;
height: 160px;
min-height: 160px;
max-height: 160px;
object-fit: cover;
}
&__date {
width: fit-content;
padding: 8px 12px;
background-color: $light-blue;
font-size: 14px;
font-weight: 500;
color: white;
border-radius: 3px;
}
&__text {
display: flex;
flex-direction: column;
flex: 1;
gap: 20px;
h4 {
font-size: 24px;
font-weight: 500;
}
p {
font-size: 16px;
font-weight: 400;
line-height: 150%;
}
}
&__more-btn {
width: fit-content;
padding: 8px 12px;
border: 2px solid #3b3b3b;
border-radius: 3px;
color: #3b3b3b;
font-weight: 600;
}
}